我想输入学生成绩,然后球最大值根最小值,用结构体录入是不是太麻烦了?
#include <stdio.h>
struct student{ float Math; float English; float Biology; float Chemistry; };
int main(){
struct student stu; printf("请依次输入成绩,数学 英语 生物 化学\n"); scanf("%f %f %f %f", &stu.Math,&stu.English,&stu.Biology,&stu.Chemistry);
printf("数学:%.2f 英语:%.2f 生物:%.2f 化学:%.2f\n",stu.Math,stu.English,stu.Biology,stu.Chemistry);
int max=0; if(stu.Math>stu.English){ max=stu.Math; }
return 0; }
|