先请原谅我爆出口。这狗屎一样的代码,代码不整洁,逻辑不清晰。
本来想在原来的基础上改改,看了10几分钟实在看不下去。
于是按题目写了如下代码(参考):#include<stdio.h>
#include<string.h>
struct Score
{
int chinese;
int math;
int english;
};
typedef struct Student
{
int num;
struct Score score;
double aver;
} St;
int main()
{
St stu[3] = {{1,90,80,70}, {2,85,75,95}, {3,88,84,65}};
int i, id;
double max = 0;
char s[10]={'\0'};
for(i=0; i<3; i++)
{
stu[i].aver = (stu[i].score.chinese + stu[i].score.math + stu[i].score.english) / 3;
if (stu[i].aver > max) // 此处便可获取最高分ID
{
max = stu[i].aver;
id = stu[i].num;
}
}
printf("请输入学号/max:");
gets(s);
if( strcmp(s,"1")==0 )
{
printf("%f\n", stu[0].aver);
}
else if( strcmp(s,"2")==0 )
{
printf("%f\n", stu[1].aver);
}
else if( strcmp(s,"3")==0 )
{
printf("%f\n", stu[2].aver);
}
else if( strcmp(s,"max")==0 )
{
printf("最高分ID是:%d\n", id);
}
else
{
printf("0");
}
return 0;
}
|