C语言课程设计----学生学籍管理系统 急急急 来大神~
C语言课程设计----学生学籍管理系统 急急急 来大神~
日期:2010-08-22 12:41:46 人气:1
#include
#include
#include
typedef struct stud //学生信息结构
{
long num;
char name[20];
float score;
}Stud;
typedef struct node
{
Stud student;
struct node *next;
}Node;
Node *head=NULL;
void read(void);
void inser(l