求助,如何用C语言编写程序计算并输出100~300之间全部素数的和?

2024年11月29日 23:36
有2个网友回答
网友(1):

1楼的把count++;改成count +=m;
然后把循环里的printf去掉,在m循环外printf("%d",count);就好了

网友(2):

#include
#include
int main (void)
{
int i,m,n,count;
count=0;
for(m=100;m<=200;m++){
n=(int)sqrt(m);
for(i=2;i<=n;i++){
if(m%i==0)break;
}

if(i>n){
printf("%d ",m);
count++;
if(count%10==0)
printf("\n");
}
}
printf("\n");
return 0;
}