2 条题解
-
0
//给定一个正整数n,求它的因数个数。例如6的因数为1,2,3,6,则因数个数为4. //输入 12 //输出 6 //输入 30 //输出 8 #include <iostream> #include <cstdio> #include <math.h> using namespace std; int main () {system("color 9e"); long long int n,i,k=0; cin>>n; for(i=1;i<=n/2;i++) //1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 if (n%i==0) k++; cout<<k+1; }
- 1
信息
- ID
- 346
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 1
- 标签
- (无)
- 递交数
- 132
- 已通过
- 105
- 上传者