解题思路:
注意事项:
参考代码:
import java.util.Scanner;
public class The143 {
public static void main(String []args){
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int m=0;
for(int i=1;i<n;i++){
int a=n%i;
if(a==0){
m++;
}
}
System.out.print(m);
}
}
0.0分
0 人评分
【数组的距离】 (C语言代码)浏览:787 |
不容易系列2 (C语言代码)浏览:641 |
C二级辅导-阶乘数列 (C语言代码)浏览:736 |
WU-格式化数据输出 (C语言代码)浏览:1818 |
Hello, world! (C++代码)浏览:1778 |
Hello, world! (C语言代码)浏览:766 |
Tom数 (C语言代码)浏览:517 |
The 3n + 1 problem (C语言代码)浏览:550 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:592 |
母牛的故事 (C语言代码)浏览:625 |