c语言!!!程序设计:建立一个学生信息链表,包括学号,姓名,成绩.(实现添加,删除,查询,排序,平均)

日期:2019-08-27 02:46:00 人气:2

c语言!!!程序设计:建立一个学生信息链表,包括学号,姓名,成绩.(实现添加,删除,查询,排序,平均)

#include using namespace std; struct stu{ char name[20]; int num; int age; char sex; int grade; struct stu *next; }; struct stu *mythis,*mynew; void newrecord(struct stu *head) { mythis=head->next; while(mythis!=NULL) mythis=mythis->next; mynew=(str
    A+
热门评论