#include <iostream>
using namespace std;
struct student {
char name;
int score[3];
};
int getave(int score[]) {
int avg=0;
for (int i = 0; i < 3; i++
C++,输入5个学生的3门成绩,输出平均分最高的人的姓名,数组结构体
最新推荐文章于 2023-06-02 14:03:13 发布