|
#include <stdlib.h>
main() {
int a,b;
int sum;
a=rand()%100; /*调用库函数rand产生100内的随机数*/
srand(time()); /*调用scrand函数根据括号内的种子不同,可以是下次产生的随机数不同*/
b=rand()%100; /*受srand函数的影响,产生随机数*/
printf("%d +%d = ",a,b);
scanf("%d",&sum); /*输入计算结果*/
if (sum==a+b) /*输出判断*/
printf(" Answer is true\n");
/*答案正确的输出*/
else
printf(" Answer is false\n");
/*答案错误的输出*/
} |
|