【文件属性】:
文件名称:C语言做的学生选课系统
文件大小:3KB
文件格式:RAR
更新时间:2012-01-05 13:55:40
c语言 选课 系统
#include
#include
int N1,N2,kk1,kk2,kk3;
struct couse * head1;
struct student * head2;
struct couse//课程信息结构体
{
int num1;
char name1[20];
int score;
int nelepeo;//课程已选人数
int Melepeo;//课程人数上限
struct couse * next;
};
struct student//学生信息结构体
{
int num2;
char name2[20];
int nelenum[50];//已选课程编号
int nelen;//已选课程数量
struct student * next;
};
【文件预览】:
C语言选课系统.txt