标签:整数 质因数 print class string bre 输入 == 分解质因数
将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。
public class Example04 {
public static void main(String[] args) {
f(100);
}
public static void f(int n) {
int k = 2;
System.out.print(n + "=");
while (k <= n) {
if (k == n) {
System.out.println(n);
break;
} else if (n % k == 0) {
System.out.print(k + "*");
n = n / k;
} else
k++;
}
}
}
标签:整数 质因数 print class string bre 输入 == 分解质因数
原文地址:http://www.cnblogs.com/qubo520/p/6924537.html