解题思路:
注意事项:
参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); long a=scanner.nextLong(); long b=1; for (int i = 2; i <= a; i++) { if (a%i==0) { b=b*i; if (a==i) { break; } while (a%i==0) { a/=i; } } } System.out.println(b); } }
0.0分
2 人评分
A+B for Input-Output Practice (IV) (C++代码)浏览:865 |
求圆的面积 (C++代码)这里推荐使用宏定义浏览:2028 |
点我有惊喜!你懂得!浏览:1439 |
母牛的故事 (C语言代码)浏览:992 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:467 |
淘淘的名单 (C语言代码)浏览:1167 |
WU-输出正反三角形 (C++代码)浏览:1101 |
Wu-求圆的面积 (C++代码)浏览:1994 |
校门外的树 (C语言代码)浏览:733 |
Hello, world! (C++代码)浏览:1779 |