C语言程序设计 学生信息管理系统 求啊 。。。。。
C语言程序设计 学生信息管理系统 求啊 。。。。。
日期:2011-10-26 12:41:05 人气:1
#include
#include
#include
//全局变量
struct student
{
int num;
char name[20];
char kecheng[20];
float score;
struct student *next;
};
struct student *head=NULL;
//界面、调用函数声明
void cover0();//主界面
void cover1();