编程,在屏幕上随机列出10道加法计算题,请用户输入答案,每题10分,最后列出分值。
2个回答
展开全部
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
int add(x,y)
{int s;
s=x+y;
return s;
}
void srand(int x,int y)
{ srand( (unsigned)time( NULL ) ); /*这个就是生成了一个种子*/
x=rand()%100; /*通过rand()%100来生成一个0~99的随机数,并将它赋给k*/
y=rand()%100;
}
main()
{int i,sum=0;
int x,y;
printf("please count these questions\n");
for(i=0;i<10;i++)
{long c;
srand(x,y) ;
add(x,y);
printf("x+y=");
scanf("%ld",&c);
if(c=add(x,y))sum+=10;
}
printf("Your score is %d:\n",sum);
}
#include <stdio.h>
#include <time.h>
int add(x,y)
{int s;
s=x+y;
return s;
}
void srand(int x,int y)
{ srand( (unsigned)time( NULL ) ); /*这个就是生成了一个种子*/
x=rand()%100; /*通过rand()%100来生成一个0~99的随机数,并将它赋给k*/
y=rand()%100;
}
main()
{int i,sum=0;
int x,y;
printf("please count these questions\n");
for(i=0;i<10;i++)
{long c;
srand(x,y) ;
add(x,y);
printf("x+y=");
scanf("%ld",&c);
if(c=add(x,y))sum+=10;
}
printf("Your score is %d:\n",sum);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询