c语言课程设计成绩管理程序 包括录入删除查询排序等功能
c语言课程设计成绩管理程序 包括录入删除查询排序等功能
日期:2018-03-28 16:47:54 人气:2
#include
#include
#include
#include
struct sc
{
int chinese;
int maths;
int english;
};
typedef struct node
{
int num;
char name[20];
struct sc score;
struct node *next;
}st;
int menu()//菜单
{
int choice;
do{
s