#include<stdio.h> # define N 3 struct Student {int num; char name[20]; float score[3]; float aver; }; int main() { void input(struct Student stu[]); struct Student max(struct Student stu[]); void print(struct Student stu); struct Student stu[N] , *p=stu; input(p); print(max(p)); return 0; } void input(struct Student stu[]) { int i; printf("請輸入各學生的信息:學號,姓名,三門課成績:\n"); for(i=0;i<N;i++) {scanf("%d%s%f%f%f",&stu[i].num,stu[i].name,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]); stu[i].aver=(stu[i].score[0]+stu[i].score[1]+stu[i].score[2])/3.0; } } struct Student max(struct Student stu[]) { int i,m=0; for(i=0;i<N;i++) if(stu[i].aver>stu[m].aver) m=i; return stu[m]; } void print(struct Student stud) { printf("\n成績最高的學生是:\n"); printf("學號:%d姓名:%s\n三門課成績:%5.1f,%5.1f,%5.1f\n平均成績:%6.2f\n",stud.num,stud.name,stud.score[0],stud.score[1],stud.score[2],stud.aver); }
請輸入各學生的信息:學號,姓名,三門課成績:
1001 張三 70 80 90
1002 李明 50 65 70
1003 李四 97 84 65
成績最高的學生是:
學號:1003姓名:李四
三門課成績: 97.0, 84.0, 65.0
平均成績: 82.00
--------------------------------
Process exited after 77.83 seconds with return value 0
請按任意鍵繼續. . .
