#include<stdio.h> #define SIZE 5 struct student { int num; char name[10]; float score[3]; float ave

2024年12月04日 23:33
有1个网友回答
网友(1):

有输出语句, 加上输出语句就可以了:
如, 加在abc函数中:
int abc(struct Student stu[])
{
int i,j;
struct Student t;
for(j=0;j for(i=0;i if(stu[i].num>stu[i+1].num)

for (i=0; i {
printf("%d %s %c %f %f %f %f\n", stu[i].num, stu[i].name, stu[i].sex, stu[i].score[0], stu[i].score[1], stu[i].score[2], stu[i].average);
}
return 0;

}
运行情况如下