资源简介

C 课程设计:航空客运订票系统工程文件 基于C 程序设计基础,实现了多级用户管理。乘客用户可以查询航班,根据旅客提出的终点站名输出信息;根据提供的航班号进行购票,可选择购票数,若有余票,则为用户办理订票;若无余票或余票不满足用户需求,可询问旅客是否登记排队候补。乘客可退票,若有旅客在次航班候补,可按顺序为满足订票数的乘客购票。

资源截图

代码片段和文件信息

#include
#include
#include
#include
using namespace std;

struct client   
{ /*客户*/
char name[20];          /*姓名*/
int ordering_number;    /*订票量*/
int grade;             /*舱位等级*/
client *next;
};
class airline
{ /*航班信息*/
private:
char end_station[20];   /*终点站名*/
char air_num[10];       /*航班号*/
char plane_num[10];     /*飞机号*/
char day[7];            /*飞行日(星期几)*/
int people_quota;       /*乘员定额*/
double price;           /*票价*/
int more_ticket;        /*余票量*/
char passenger_list[50];   /*乘客名单*/
char waiting_list[50];     /*等候替补的客户名单*/   
static int number;       /*航班总数*/
public:
void print()
{/*打印航班信息*/
    cout<<“  终点站名:“< <<“\n  时间:“<

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        168  2019-04-05 09:52  航空客运订票系统\Debug\001a.txt

     文件          0  2019-04-05 09:52  航空客运订票系统\Debug\001b.txt

     文件        101  2019-03-26 17:44  航空客运订票系统\Debug\002a.txt

     文件          0  2019-03-26 17:44  航空客运订票系统\Debug\002b.txt

     文件         55  2019-03-26 17:45  航空客运订票系统\Debug\003a.txt

     文件          0  2019-03-26 17:45  航空客运订票系统\Debug\003b.txt

     文件        163  2019-04-05 09:52  航空客运订票系统\Debug\航班信息.txt

     文件     106496  2018-06-14 19:24  航空客运订票系统\Debug\航空客运订票系统.exe

     文件     689360  2018-06-14 19:24  航空客运订票系统\Debug\航空客运订票系统.ilk

     文件     764928  2018-06-14 19:24  航空客运订票系统\Debug\航空客运订票系统.pdb

     文件   15990784  2018-06-14 20:30  航空客运订票系统\ipch\航空客运订票系统-ce97bbe\航空客运订票系统-b9bb3766.ipch

     文件      12978  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\a.cpp

     文件     266401  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\a.obj

     文件        754  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\cl.command.1.tlog

     文件       9648  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\CL.read.1.tlog

     文件        498  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\CL.write.1.tlog

     文件          2  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link-cvtres.read.1.tlog

     文件          2  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link-cvtres.write.1.tlog

     文件          2  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.7616-cvtres.read.1.tlog

     文件          2  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.7616-cvtres.write.1.tlog

     文件          2  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.7616.read.1.tlog

     文件          2  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.7616.write.1.tlog

     文件       1762  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.command.1.tlog

     文件       3784  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.read.1.tlog

     文件       1096  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\link.write.1.tlog

     文件        452  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\mt.command.1.tlog

     文件        228  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\mt.read.1.tlog

     文件        438  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\mt.write.1.tlog

     文件        658  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\rc.command.1.tlog

     文件        410  2018-06-14 19:24  航空客运订票系统\航空客运订票系统\Debug\rc.read.1.tlog

............此处省略27个文件信息

评论

共有 条评论