You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
struct course//定义课程结构体
|
|
{
|
|
int bh;//课程编号
|
|
char mc[20];//课程名称
|
|
int xf;//课程学分
|
|
int alreadypp;//课程已选人数
|
|
int maxpp;//课程人数上限
|
|
};
|