飞机票管理系统
系统展示
正菜:
#include
#include
#include
#include
#define max 100
struct ticket { //票
char StartPoint[10];//起点
char Terminus[10]; //终点
char Time[20]; //花费的时间
double money; //票价
};
//系统
struct System {
struct ticket ticketinfo[max];//最大个数
int cursize; //当前系统元素个数
};
//初始化数据
struct System* Createtable()
{
struct System* psystem = (struct System*)malloc(sizeof(struct System));//动态内存申请
assert(psystem);
飞机票管理系统最先出现在Python成神之路。
共有 0 条评论