赞
踩
一、题目:
请你给小学生编写一个加法练习程序,每套10道题,每题正确的加10分,错误的不给分,并计算总分等。
二、程序流程图
三、参考代码:
#include <stdio.h> #include<stdlib.h> #include<math.h> int main() { int s = 0; //分数 int c ; //和 int i=0; for(i;i<10;i++) { int a = rand();//加数 int b = rand();//加数 printf("%d",a); printf("+"); printf("%d",b); printf("=\n"); //gets(c); scanf("%d\n",&c); //fflush(stdin)//清除缓存 if(a+b == c) {s+=10;//s=s+10; } //else{} } printf("%d\n",s); return 0; }
参考资料
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。