摘要: 有n个结构体变量,内含学生学号、姓名和3门课程成绩 要求求输出平均成绩最高的学生信息 代码: #include <stdio.h> #define N 3 struct Student{ int num; char name[20]; float score[3]; float aver; }; v 阅读全文
posted @ 2024-11-25 09:18 昵-称 阅读(108) 评论(0) 推荐(0)