PTA 7-1 统计素数并求和 (8 分)
题目要求如下:
我的解答
#include<stdio.h>
int main()
{
int a,b,M,N;
int t=2;
int sum=0;
scanf("%d %d",&M,&N);
while(M<=N)
{
while(t<M)
{
a=M%t;
t=t+1;
if(t==M)
{b++;sum=sum+M;}
if(a==0)
{break;}
if(a!=0)
{continue;}
}
M++;
}
printf("%d %d",b,sum);
return 0;
}
```运行结果错误
![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/727974006536176.png "=600 #left")
应该是计算没对,但是我已经陷入僵局了,完全不知道自己错在哪里T_T