Task Description
請輸入三個學生的名字和成績,並計算出整班成績平均及最高分者
12345 struct
Student
{
char
studentName[20];
int
score;
};
Input Format
輸入包含三位學生姓名及成績
Output Format
輸出為班上平均及最高分同學
Sample Input
123 a 30
b 60
c 90
Sample Output
12 avg = 60
max = c