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 ticket{
|
|
int num; //班次编号
|
|
int man; //已订票人数
|
|
float hour; //行车时间
|
|
int Bearer; //额定载量
|
|
char time[10]; //发车时间小时
|
|
char time_min[10]; //发车时间分钟
|
|
char start[10]; //起始站
|
|
char end[10]; //终点站
|
|
};
|
|
int CAR_num=0; //初始班次总数为0
|
|
struct ticket sum[100]; //定义数组
|