解题思路:
注意事项:
参考代码:
typedef struct student{
char id[100];
char name[100];
int score[3],allscore;
}stu[100];
void input(int n)
{
struct student stu[100];
int i,t=0;
for(i=0;i<n;i++)
{
scanf("%s %s %d %d %d",stu[i].id,stu[i].name,&stu[i].score[0],&stu[i].score[1],&stu[i].score[2]);
stu[i].allscore=stu[i].score[0]+stu[i].score[1]+stu[i].score[2];
}
int max;
int a1=stu[0].score[0],a2=stu[0].score[1],a3=stu[0].score[2];
max=stu[0].allscore;
for(i=1;i<n;i++)
{
if(max<stu[i].allscore)
{
max=stu[i].allscore;
t=i;
}
a1=a1+stu[i].score[0];//求所有同学这门课的总分;
a2=a2+stu[i].score[1];
a3=a3+stu[i].score[2];
}
printf("%d %d %d\n",a1/n,a2/n,a3/n);
printf("%s %s %d %d %d",stu[t].id,stu[t].name,stu[t].score[0],stu[t].score[1],stu[t].score[2]);
}
int main()
{
int n;
scanf("%d",&n);
input(n);
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.9 (C语言代码)浏览:690 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:556 |
淘淘的名单 (C语言代码)答案错误???浏览:624 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:895 |
C语言程序设计教程(第三版)课后习题12.5 (C语言代码)浏览:799 |
简单的a+b (C语言代码)浏览:857 |
判定字符位置 (C++代码)浏览:733 |
C语言程序设计教程(第三版)课后习题6.11 (C++代码)浏览:534 |
C语言程序设计教程(第三版)课后习题10.4 (C语言代码)浏览:643 |
IP判断 (C语言代码)浏览:598 |