解题思路:
注意事项:
参考代码:
#include<stdio.h>
struct st{
char num[100];
char name[100];
int s[3];
};
void iput( struct st*a,int n);
void oput1( struct st*a,int n);
void oput2( struct st*a,int n);
int main()
{
int n;
scanf("%d",&n);
struct st a[n];
iput(a,n);
oput1(a,n);
oput2(a,n);
return 0;
}
void iput( struct st*a,int n)
{
int i;
for(i=0;i<n;i++)
scanf("%s%s%d%d%d",&(a[i].num),&(a[i].name),&(a[i].s[0]),&(a[i].s[1]),&(a[i].s[2]));
}
void oput1 (struct st*a,int n )
{
int i;
int sum1=0,sum2=0,sum3=0;
for(i=0;i<n;i++)
{
sum1+=a[i].s[0];
sum2+=a[i].s[1];
sum3+=a[i].s[2];
}
printf("%d %d %d\n",sum1/n,sum2/n,sum3/n);
}
void oput2( struct st*a,int n)
{
int i;
int sum[n];
for(i=0;i<n;i++)
{
sum[i]=0;
sum[i]=a[i].s[0]+a[i].s[1]+a[i].s[2];
}
int k=0;
int max=sum[k];
for (i=0;i<n;i++)
{
if(sum[i]>max)
{
max=sum[i];
k=i;
}
}
printf("%s %s %d %d %d",a[k].num,a[k].name,a[k].s[0],a[k].s[1],a[k].s[2]);
}
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1166 |
C语言程序设计教程(第三版)课后习题6.9 (C语言代码)浏览:603 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:632 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:467 |
【蟠桃记】 (C语言代码)浏览:697 |
C语言训练-求s=a+aa+aaa+aaaa+aa...a的值 (C语言代码)浏览:760 |
WU-拆分位数 (C++代码)浏览:819 |
【求[X,Y]内被除3余1并且被除5余3的整数的和】 (C语言代码)浏览:703 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:590 |
字符串的输入输出处理 (C语言代码)浏览:1085 |