/*1.有10个学生,每个学生的数据包括学号、姓名、高数课、英语课、程序设计课的成绩。
从键盘输入10个学生的数据,要求输出每个学生三门课程的平均成绩,以及平均成绩最高
的学生的数据(包括学号、姓名、三门课成绩、平均成绩)。 */
#include<stdio.h>
#define N 3 //数据个数
struct STUDENT
{
int studentID; /*每个学生的序号*/
char studentName[N];/*每个学生的姓名*/
float scoreComputer; /*每个学生的程序设计成绩*/
float scoreEnglish; /*每个学生的英语成绩*/
float scoreMath; /*每个学生的高数成绩*/
float Ave; //平均成绩
};
main()
{
int i,maxpos;
float max;
struct STUDENT stu[N];
for(i=0;i<N;i++)
{
printf("请输入第%d个:",i);
scanf("%d%s%f%f%f",&stu[i].studentID,
stu[i].studentName,
&stu[i].scoreComputer,
&stu[i].scoreEnglish,
&stu[i].scoreMath);
stu[i].Ave=(stu[i].scoreComputer+stu[i].scoreEnglish+stu[i].scoreMath)/3.0;
}
max=stu[0].Ave;
maxpos=0;
if(stu[i].Ave>max)
{
max=stu[i].Ave;
maxpos=i;
}
for(i=0;i<N;i++)
{
printf("%s%s%f%f%f%f",stu[i].studentID,stu[i].studentName[N],stu[i].scoreComputer,stu[i].scoreEnglish,stu[i].scoreMath,stu[i].Ave);
}
printf("平均成绩最高的是:");
printf("%s%s%f%f%f%f",stu[maxpos].studentID,stu[maxpos].studentName[N],
stu[maxpos].scoreComputer,stu[maxpos].scoreEnglish,stu[maxpos].scoreMath,
stu[maxpos].Ave);
}