http://www.ut365。com/cyuyan/10。html学生成绩管理系统(c 语言)课程设计报告学生成绩管理系统要求是这样的1、用 c 语言编写一个简单的学生信息管理程序,能实现对学生信息的简单管理。2、具体要求:建 立 一 个 4 个 学 生 的 信 息 登 记 表 , 每 个 学 生 的 信 息 包 括 : 学 号 , 姓 名 , 和 3 门 课 程 的 成 绩(FOX,C,ENGLISH)。 程序运行时显示一个简单的菜单,例如: (1):信息输入(INPUT) (2):总分统计(COUNT) (3):总分排序(SORT) (4):查询(QUERY) 其中: (1):对 4 个学生的信息进行输入; (2):对每个学生的 3 门课程统计总分; (3):对 4 个学生的总分按降序排序并显示出来; (4):查询输入一个学号后,显示出该学生的有关信息;。。。。。。。。。。.。偶先写了个。.。#i nclude〈iostream.h〉#i ncludestruct student{ int num; char name[20]; int foxscore; int cscore; int englishscore; struct student *next;};void menu(){ cout〈<” welecome to my student grade management system"〈〈endl; cout<<” please follow everyone step in the menu”〈〈endl; cout〈<" 1。input information”〈〈endl; cout〈<" 2.total scores”<〉p1->name>〉p1-〉foxscore>>p1—>cscore〉〉p1->englishscore; // 输入节点的值 p1-〉 next = NULL; // 将新节点的指针置为空 while(p1-〉num〉0) { if (head==NULL) head=p1; //空表,接入表头 else p2—〉next=p1; // 非空表,接到表尾 p2 = p1; p1=(struct student *)malloc(sizeof(struct student)); //申请下一个新节点 cin〉〉p1-〉num〉>p1-〉name〉>p1—〉foxscore〉〉p1->cscore〉〉p1-〉englishscore; //输入节点的值 } return head; //返回链表的头指针} vo...