解题思路: 编了很久,新手上路。
注意事项: 简单明了!!有问题留言谢谢。
参考代码:
#include <stdio.h>
struct information
{
char number[20];
char name[20];
int core[3];
};
void input(int N,struct information stu[])
{
int i;
for(i=0;i<N;i++)
{
scanf("%s %s %d %d %d",&stu[i].number,&stu[i].name,&stu[i].core[0],&stu[i].core[1],&stu[i].core[2]);
}
}
void print(struct information stu[],int N)
{
int temp[N],max;
int i,j;
int p;
int sum1=0,sum2=0,sum3=0;
for(i=0;i<N;i++)
{
sum1+=stu[i].core[0];
sum2+=stu[i].core[1];
sum3+=stu[i].core[2];
}
printf("%d %d %d\n",sum1/N,sum2/N,sum3/N);
for(i=0;i<N;i++)
{
temp[i]=stu[i].core[0]+stu[i].core[1]+stu[i].core[2];
}
for(i=0;i<N;i++)
{
for(j=i+1;j<N;j++)
{
if(temp[i]>temp[j])
{
max=temp[i];
p=i;
}
else
{
max=temp[j];
p=j;
}
continue;
}
}
printf("%s %s %d %d %d",stu[p].number,stu[p].name,stu[p].core[0],stu[p].core[1],stu[p].core[2]);
}
int main ()
{
int N;
scanf("%d",&N);
struct information student[100]; /*这里我开始写的student[N]是错误的,相当于限制数组的个数,当输入多个数据就不能用了*/
input(N,student);
print(student,N);
return 0;
}
0.0分
5 人评分
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:1067 |
程序员的表白 (C语言代码)浏览:1466 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:502 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:466 |
C语言训练-角谷猜想 (C语言代码)浏览:1768 |
【蟠桃记】 (C语言代码)浏览:711 |
不容易系列 (C语言代码)浏览:702 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:1072 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:782 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:1314 |