标签:port static == ring 正整数分解 输入 分解质因数 题目 public
/*
题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。
*/
import java.util.*;
public class Class4 {
public static void main(String[] args) {
Scanner s = new Scanner(System.in);
System.out.println("输入一个正整数:");
int a = s.nextInt();
int b = 2;
System.out.print(a + "=");
while( a >= b){
if(a == b){
System.out.println(a);
break;
}else{
if(a % b == 0){
System.out.print(b + "*");
a = a/b;
}else{
b++;
}
}
}
}
}
标签:port static == ring 正整数分解 输入 分解质因数 题目 public
原文地址:https://www.cnblogs.com/zhuozige/p/12357941.html