[求助],“找出一千以内因子最多的数”
请教各位,“找出一千以内因子最多的数”要怎么编。谢谢
谢谢,帮忙看看这样写有什么错
#include<iostream>
using namespace std;
int fun1(int m)
{
int a,i;
for(i=1;i<=m;i++)
{
if(m%i==0) a++;
}
return (a);
}
void main()
{
int n,k,temp=0;
for(n=2;n<=1000;n++)
{
k= fun1( n);
if (k>temp) temp=k;
}
cout<<temp<<endl;
}