码迷,mamicode.com
首页 > 其他好文 > 详细

个人项目3

时间:2018-10-31 20:13:34      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:com   image   scan   malloc   bsp   default   ase   std   img   

题目

实现在线答题,答题结束后判断对错,并将错题保存起来

#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("\n");
d=a+b;
if(c==d)
printf("正确!\n");
else
printf("错误!\n");
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("\n");
d=a-b;
if(c==d)
printf("正确!\n");
else
printf("错误!\n");
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("\n");
if(c==a*b)
printf("正确!\n");
else
printf("错误!\n");
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("\n");
d=a/b;
if(c==d)
printf("正确!\n");
else
printf("错误! %f\n",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退出,其他任意键继续!\n");
b=getch();
if(b==‘0‘)
break;
else
continue;

}
return 0;


}

实现了前两个目的

 

技术分享图片

 

 

 

技术分享图片

 

 

 技术分享图片

 

 技术分享图片

 

个人项目3

标签:com   image   scan   malloc   bsp   default   ase   std   img   

原文地址:https://www.cnblogs.com/tu1603liwen/p/9884942.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!