#include
#include
#include
static int m=0;
static int n=0;
int Add(int a,int b) //输入的算式
{
int answer;
printf("%d+%d=",a,b);
scanf("%d",&answer);
if(a+b==answer)
return 1;
else return 0;
}
void Print(int flag) //输出结果
{
if(flag)
{
m+=10;
printf("Right!\n");
}
else
{
n++;
printf("Not correct!\n");
}
}
int main()
{
int a,b,answer;
srand(time(NULL)); //播撒随机数种子
for(int i=0;i<10;i++)
{
a=rand()%10; //生成10以内的随机数
b=rand()%10;
answer=Add(a,b);
Print(answer);
}
printf("score=%d,error=%d",m,n);
return 0;
}
#include
using namespace std;
char opt[4]={'+','-','*','/'};
int main() {
srand(time(0));
for (int i=1;i<=10;i++) printf("%d%c%d=?\n",rand()%10+1,opt[rand()%4],rand()%10+1);
}