上传者: IT_superman2011
|
上传时间: 2022-02-17 15:02:08
|
文件大小: 4KB
|
文件类型: -
struct student
{
char name[20]; //学生的姓名
long int num; //学生的学号
int classroom,grade; //学生的班级和年级
double english,math,c; //学生的各科成绩
double sum; //学生的总成绩
double average;//学生的平均成绩
int order; //学生的排名
struct student *next;
};