1034: 求约数个数
Time Limit: 1 Sec Memory Limit: 128 MBDescription
输入一个数字,输出其约数个数。例如10就有4个约数1,2,5,10
Input
一个数字N,N< = MaxLongint
Output
如题
Sample Input
10
Sample Output
4
HINT
Source
#include<iostream>
using namespace std;
main()
{
int n,i,count=0; //定义
cin>>n; //输入
for(i=1;i<=n;i++) //遍历
{
if(n%i==0)count++; //判断,计数
}
cout<<count<<endl; //输出
}