个人项目3
Posted tu1603liwen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了个人项目3相关的知识,希望对你有一定的参考价值。
题目
实现在线答题,答题结束后判断对错,并将错题保存起来
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <conio.h>
float* IntegerOrFraction()
{
float *pb=(float *)malloc(2*sizeof(float));
int i,a;
for(i=0;i<2;i++)
{
a=rand()%2+1;
if(a==1)
pb[i]=(float)(rand()%100+1);
else
pb[i]=(float)(rand()%10+1)/10;
}
return pb;
}
void add()
{
float a,b,c,d;
float *pb=IntegerOrFraction();
a=pb[0];
b=pb[1];
printf("%.1f + %.1f=",a,b);
scanf("%f",&c);
printf("
");
d=a+b;
if(c==d)
printf("正确!
");
else
printf("错误!
");
free(pb);
}
void minu()
{
float a,b,c,d;
float *pb=IntegerOrFraction();
a=pb[0];
b=pb[1];
if(b>a)
{
c=b;
b=a;
a=c;
}
printf("%.1f - %.1f=",a,b);
scanf("%f",&c);
printf("
");
d=a-b;
if(c==d)
printf("正确!
");
else
printf("错误!
");
free(pb);
}
void mul()
{
float a,b,c;
float *pb=IntegerOrFraction();
a=pb[0];
b=pb[1];
printf("%.1f * %.1f=",a,b);
scanf("%f",&c);
printf("
");
if(c==a*b)
printf("正确!
");
else
printf("错误!
");
free(pb);
}
void di()
{
float a,b,c,d;
float *pb=IntegerOrFraction();
a=pb[0];
b=pb[1];
printf("%.1f / %.1f=",a,b);
scanf("%f",&c);
printf("
");
d=a/b;
if(c==d)
printf("正确!
");
else
printf("错误! %f
",d);
free(pb);
}
int main()
{
int i,n,a;
char b;
printf("请输入题目数:");
scanf("%d",&n);
for(i=1;i<=n;i++)
{
srand((unsigned)time(NULL));
a=rand()%4;
switch(a)
{
case 0:
add();
break;
case 1:
minu();
break;
case 2:
mul();
break;
case 3:
di();
break;
default:
break;
}
printf("按0退出,其他任意键继续!
");
b=getch();
if(b==‘0‘)
break;
else
continue;
}
return 0;
}
实现了前两个目的
以上是关于个人项目3的主要内容,如果未能解决你的问题,请参考以下文章