有输出语句, 加上输出语句就可以了:
如, 加在abc函数中:
int abc(struct Student stu[])
{
int i,j;
struct Student t;
for(j=0;j
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;
}
运行情况如下