参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int m = scanner.nextInt(); for(int i = n; i <= m; i++) judgePrint(i); } public static void judgePrint(int x) { int i = 2; System.out.print(x + "="); while(x > i) { if(x % i == 0) { System.out.print(i + "*"); x /= i; } else i++; } System.out.println(i); } }
0.0分
5 人评分
简单的a+b (C语言代码)浏览:677 |
川哥的吩咐 (C++代码)浏览:1083 |
C语言训练-自由落体问题 (C语言代码)浏览:1775 |
简单的a+b (C语言代码)浏览:565 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:909 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:1052 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:555 |
C语言程序设计教程(第三版)课后习题6.5 (C++代码)浏览:487 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:751 |
文科生的悲哀 (C语言代码)浏览:1552 |