c语言课程设计编程习题

2025-06-29 07:36:09
推荐回答(1个)
回答1:

#include
#include /*链表中每一结点包括:学号、姓名、性别、年龄、成绩*/
struct stu_rec
{
char cno[13];/*学号*/
char cname[20];/*姓名*/
char csex;/*性别*/
int iage;/*年龄*/
int fscore;/*成绩*/
struct student *next;
}student;
student
} 是不是大学生都考这个啊