|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#define N 3 //学生数为3
typedef struct Student //建立结构体类型
{
int num; //学号
char name[20]; //姓名
float score[3]; //3门课成绩
float aver; //平均成绩
}Stu;
int main(void)
{
void input(Stu stu[]); //函数声明
Stu max(Stu stu[]); //结构体函数声明
void print(Stu stu); //函数声明
Stu stu[N]; //定义一个结构体数组
Stu* p = stu; //定义一个结构指针 同时指向结构体数组
input(p); //调用函数
print(max(p)); //调用函数
return 0;
}
void input(Stu stu[]) //定义input函数
{
int i;
printf("请输入各学生的信息:学号、姓名、3门成绩: \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; //求平均成绩
}
}
Stu max(Stu stu[]) //定义max函数
/* struct Student是结构体类型,来
struct Student max( )是一源个函数,函数名叫max,返回值类型是struct Student型数据
实参struct Student stu[]是一个struct Student型地址,形参名stu
*/
{
int i, m = 0; //用m存放成绩最高的学生在数组中的序号
for (i=0;i<N;i++)
{
if(stu[i].aver > stu[m].aver) //找出平均成绩最高的学生在数组中的序号
{
m = i;
}
}
return stu[m]; //返回包含该生信息的结构体元素
}
void print(Stu stud)
{
printf("\n成绩最高的学生是: \n");
printf("学号:%d\n姓名:%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);
} |
|