大家帮我 看下程序 错出在哪里 循环不执行!!!
大家帮我 看下程序 错出在哪里 循环不执行!!! #include <stdlib.h>
#include <time.h>
const int N = 10;
void main ()
{
int i,x,y,z,c=0;
srand(time(0));
for(i=1;i<=N;i++);{
x=rand()%90+10;
y=rand()%90+10;
printf ("%d + %d = ",x,y);
scanf ("%d",&z);
if (x+y==z)c++;
}
printf ("最后得分:%d\n",c*10);
}
为什么不执行循环,我是想循环10次的
输出结果为什么会是这个,
6 + 14 = 90
最后得分:10
ress any key to continue
运行不报错