急急急~~~`综合一给小学生出加法考试题
综合一给小学生出加法考试题编写一个程序,给学生出加法运算题,然后判断学生输入的答案对错与否,可以按下列要求以循序渐进的方式编程。程序1通过输入两个加数给学生出一道加法运算...
综合一给小学生出加法考试题编写一个程序,给学生出加法运算题,然后判断学生输入的答案对错与否,可以按下列要求以循序渐进的方式编程。
程序1 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct! Try again!”,程序结束。
程序2 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct! Try again!”,直到做对为止。
程序3 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则提示重做,显示“Not correct! Try again!”,最多给三次机会,如果三次仍未做对,则显示“Not correct! You have tried three times! Test over!”,程序结束。
程序4 连续做10道题,通过计算机随机产生两个1~10之间的加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct!”,不给机会重做,10道题做完后,按每题10分统计总得分,然后打印出总分和做错的题数。
编程要求:
1. 较好的用户输入输出提示
2. 仅仅要求完成程序4的编写调试运行工作,程序1至程序3是对编写程序4的引导。若可以直接编写出程序4,可以直接编写,如果不能一步编写成功,可以根据引导一步步编写。
选做附加题通过计算机随机产生10道四则运算题,两个操作数为1~10之间的随机数,运算类型为随机产生的加、减、乘、整除中的任意一种,如果输入答案正确,则显示“Right!”,否则显示“Not correct!”,不给机会重做,10道题做完后,按每题10分统计总得分,然后打印出总分和做错题数。 展开
程序1 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct! Try again!”,程序结束。
程序2 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct! Try again!”,直到做对为止。
程序3 通过输入两个加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则提示重做,显示“Not correct! Try again!”,最多给三次机会,如果三次仍未做对,则显示“Not correct! You have tried three times! Test over!”,程序结束。
程序4 连续做10道题,通过计算机随机产生两个1~10之间的加数给学生出一道加法运算题,如果输入答案正确,则显示“Right!”,否则显示“Not correct!”,不给机会重做,10道题做完后,按每题10分统计总得分,然后打印出总分和做错的题数。
编程要求:
1. 较好的用户输入输出提示
2. 仅仅要求完成程序4的编写调试运行工作,程序1至程序3是对编写程序4的引导。若可以直接编写出程序4,可以直接编写,如果不能一步编写成功,可以根据引导一步步编写。
选做附加题通过计算机随机产生10道四则运算题,两个操作数为1~10之间的随机数,运算类型为随机产生的加、减、乘、整除中的任意一种,如果输入答案正确,则显示“Right!”,否则显示“Not correct!”,不给机会重做,10道题做完后,按每题10分统计总得分,然后打印出总分和做错题数。 展开
3个回答
展开全部
程序1
#include "stdio.h"
#include "conio.h"
main()
{ int a,b, answer;
scanf("%d,%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right!");
else
printf("not correct!try again");
getch();
}
程序2
#include "stdio.h"
#include "conio.h"
main()
{ int a,b,answer;
do
{scanf("%d%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right");
else
printf("not correct!try again!");
}
while(answer!=a+b);
{printf("not correct!try again!\n");
printf("a+b=");
scanf("%d",&answer);
}
printf("right");
getch();
}
程序4
#include <stdio.h>
#include <stdlib.h>
main ()
{
int a,b,answer,i=0,sum=0,error=0;
do
{a=rand()%10+1;
b=rand()%10+1;
printf("%d+%d=",a,b);
scanf("%d",&answer);
i++;
if(answer==a+b)
{printf("Right!\n");
sum++;
}
else
{printf("NOt correct\n");
error++;
} }
while(i<=9);
printf("Right=%d,error=%d,zong=%d",sum,error,sum=10);
getch ();
}
#include "stdio.h"
#include "conio.h"
main()
{ int a,b, answer;
scanf("%d,%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right!");
else
printf("not correct!try again");
getch();
}
程序2
#include "stdio.h"
#include "conio.h"
main()
{ int a,b,answer;
do
{scanf("%d%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right");
else
printf("not correct!try again!");
}
while(answer!=a+b);
{printf("not correct!try again!\n");
printf("a+b=");
scanf("%d",&answer);
}
printf("right");
getch();
}
程序4
#include <stdio.h>
#include <stdlib.h>
main ()
{
int a,b,answer,i=0,sum=0,error=0;
do
{a=rand()%10+1;
b=rand()%10+1;
printf("%d+%d=",a,b);
scanf("%d",&answer);
i++;
if(answer==a+b)
{printf("Right!\n");
sum++;
}
else
{printf("NOt correct\n");
error++;
} }
while(i<=9);
printf("Right=%d,error=%d,zong=%d",sum,error,sum=10);
getch ();
}
展开全部
#include "stdio.h"
#include "conio.h"
main()
{ int a,b, answer;
scanf("%d,%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right!");
else
printf("not correct!try again");
getch();
#include "conio.h"
main()
{ int a,b, answer;
scanf("%d,%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right!");
else
printf("not correct!try again");
getch();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
程序一
#include "stdio.h"
#include "conio.h"
main()
{ int a,b, answer;
scanf("%d,%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right!");
else
printf("not correct!try again");
getch();
}
程序二
#include "stdio.h"
#include "conio.h"
main()
{ int a,b,answer;
do
{scanf("%d%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right");
else
printf("not correct!try again!");
}
while(answer!=a+b);
{printf("not correct!try again!\n");
printf("a+b=");
scanf("%d",&answer);
}
printf("right");
getch();
}
程序四
#include <stdio.h>
#include <stdlib.h>
main ()
{
int a,b,answer,i=0,sum=0,error=0;
do
{a=rand()%10+1;
b=rand()%10+1;
printf("%d+%d=",a,b);
scanf("%d",&answer);
i++;
if(answer==a+b)
{printf("Right!\n");
sum++;
}
else
{printf("NOt correct\n");
error++;
} }
while(i<=9);
printf("Right=%d,error=%d,zong=%d",sum,error,sum=10);
getch ();
}
#include "stdio.h"
#include "conio.h"
main()
{ int a,b, answer;
scanf("%d,%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right!");
else
printf("not correct!try again");
getch();
}
程序二
#include "stdio.h"
#include "conio.h"
main()
{ int a,b,answer;
do
{scanf("%d%d",&a,&b);
printf("a+b=");
scanf("%d",&answer);
if(answer==a+b)
printf("right");
else
printf("not correct!try again!");
}
while(answer!=a+b);
{printf("not correct!try again!\n");
printf("a+b=");
scanf("%d",&answer);
}
printf("right");
getch();
}
程序四
#include <stdio.h>
#include <stdlib.h>
main ()
{
int a,b,answer,i=0,sum=0,error=0;
do
{a=rand()%10+1;
b=rand()%10+1;
printf("%d+%d=",a,b);
scanf("%d",&answer);
i++;
if(answer==a+b)
{printf("Right!\n");
sum++;
}
else
{printf("NOt correct\n");
error++;
} }
while(i<=9);
printf("Right=%d,error=%d,zong=%d",sum,error,sum=10);
getch ();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询