给你做的是100以内数的加减法,有负数,你可自己改成乘除。
#include
#define N 10
main(){
int ans,a,b,i,fensu=0;
char opr;
for(i=1;i<=N;i++){
a=rand()%99+1;
b=rand()%99+1;
opr=rand()%2;
if(opr)
opr='+';
else
opr='-';
printf("\n%d. %d%c%d=",i,a,opr,b);
scanf("%d",&ans);
if(opr=='+'){
if(ans==(a+b))
fensu++;
}
if(opr=='-'){
if(ans==(a-b))
fensu++;
}
}
printf("\n fenfu =%d",fensu);
getch();
}
#include
#include
#define N 10 //答案的个数,可以更改
main()
{
int sum=0,i;
char ch,answer[N+1]="ABCDDACBA"; //anwer数组中保存正确答案,两个"中的字母个数要比N至少小1个
for(i=0; i
printf("insert your answer of the number %d:",i+1);
scanf("%c",&ch);
if(toupper(ch)==answer[i])
sum++;
getchar();//接收每个答案后面的那个回车符
}
printf("your total score is:%d\n",sum);
}
说实在话,你说得不够清楚,不知道这个程序对你是否有所帮助.
你给的条件很不清楚,能说具体点吗?
举个例子:
int s=0;
int i;
for(i=0;i
if()//条件判断是否正确
s++;//s为答对的分数;
}
我写了好久也没有写出来,用VC弄的我也不太记得了555555有答案了告诉我一下谢谢