使用下面的数据,用C++设计一个简单的学籍管理系统,实现出最基本的功能。

内容要求超长,只能传图了,如图!
2025-04-02 10:24:24
推荐回答(1个)
回答1:

程序要求: (1)能够完成300人以内任何人数的成绩处理。 (2)程序要有主控菜单 */ #include #include #include struct stud { long num; char name[20]; double score; }; typedef struct stucode { struct stud student ; struct stucode *next; }L; void menu(); void createlist(struct stucode **r); void out(struct stucode *r); void search1(struct stucode *r); void search2(struct stucode *r); void del(struct stucode **r); void insert(struct stucode **r); void sort(struct stucode **r); void main() { char choose; int flag=1; struct stucode *r=NULL; while(flag) { system(“cls“); menu(); choose=getchar(); switch(choose) { case ‘1‘: createlist(&r); out(r); printf(“Testing function 1\nPress any key to continue\n“); getchar(); getchar(); break; case ‘2‘: search1(r); printf(“Testing function 1\nPress any key to continue\n“); getchar(); getchar( 查看原帖>>

求采纳