欢迎来到天天文库
浏览记录
ID:45687489
大小:38.46 KB
页数:12页
时间:2019-11-16
《火车票订票系统》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、#include//预处理函数#include//标准库函数#include//字符串函数#include//通过键盘来控制程序调试into=0;typedefstructzuowei{inta;//车座intb;//车厢}seat;typedefstructTmess{//定义一个结构体存储火车订票的信息chartnum[8];//火车车次chartime1[8];//发车时间charstation1[8];//出发站charstation2[8];//终点站chartujingstation[8];//途经站cha
2、rtime2[8];//到站时间charmoney[5];//票价}tmess;typedefstructin{//定义一个结构体存储火车座位信息tmessdata;//调用火车的信息intreseat;//剩余票seatseatnum;structin*next;//定义next指针}in;typedefstructpmess{//定义一个结构体存储乘客信息charname[10];//姓名chartel[15];//电话charid[20];//身份证charbooknum[3];//订票数目charcheci[8];//车次}pmess;typedefstructpeople{//乘客信
3、息pmessm;//调用pmess结构体structpeople*next;//定义next指针}people;structdingdan{intdanhao;chartnum[8];//火车车次chartime1[8];//发车时间charstation1[8];//出发站charstation2[8];//终点站chartujingstation[8];//途经站chartime2[8];//到站时间charmoney[5];charname[10];//姓名chartel[15];//电话charid[20];//身份证charbooknum[3];//订票数目charseat[10];
4、charseatnum[10];}dingdan[100];voidend();voidadmin();voidbook(in*h,people*k);voidcancel();voidchaxuntrain(in*h);in*fangshi(in*h,charfindmess[],charnumorcity[]);voidprint();voidpassenger();voidputoutticket(in*p);voidputticket(in*h);voidwidows();intmain(){for(inti=0;i<100;i++){dingdan[i].danhao=i+1000;
5、}in*h,*p;people*k,*v;intwp;h=(in*)malloc(sizeof(in));h->next=NULL;k=(people*)malloc(sizeof(people));k->next=NULL;p=h;v=k;while(1){system("cls");widows();scanf("%d",&wp);fflush(stdin);system("cls");switch(wp){case1:putticket(h);break;case2:chaxuntrain(p);break;case3:book(p,v);break;case4:print();brea
6、k;case5:cancel();break;default:break;}printf("请按任何键结束");getch();}return0;}voidend(){//结束页面函数puts("********************************************");printf("谢谢使用");}voidwidows(){//初始页面函数;printf("*****************************************************************************");printf(" * #*
7、");printf("* @@ #*");printf("* @@@@ #*");printf("*@@@@@@ #*");printf("* #####################*");printf(" *#################*");printf(" * #############*");printf("* ###
此文档下载收益归作者所有