分享
{
int k=0,I,j;
for(i=lim;i>1;i--)
for(j=2;j
if(i%j==0)
break;
else
continue;
if(j>=i)
aa[k]=i;
k++;
}
return k++;