欢迎来到天天文库
浏览记录
ID:47048798
大小:17.15 KB
页数:18页
时间:2019-07-08
《酒店管理系统代码》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、标准文档#include#include#include#include#include//--------------------------------------------------结构定义------------------------------------------typedefstructCheckinInformation{charname[10];//姓名intid;//证件号introomType;//房型intco
2、untType;//计费方式}CheckinInfo;typedefstructHotelRoom{introomType;//房型introomNum;//房号intchecked;//入住情况intprice;//房价}Room;typedefstructRoomOrder{CheckinInfo*checkinInfo;//入住信息longdate;//入住时间Room*room;//房间信息实用文案标准文档}Order;typedefstructHotelInfomation{intcheckinAmount;//已入住房
3、数intsingleRemainAmount;//单人房剩余房数intdoubleRemainAmount;//双人房剩余房数intbigRemainAmount;//大床房剩余房数}HotelInfo;//--------------------------------枚举类型---------------------------enum{MainUI,HotelInfoUI,CheckinUI,CheckinResultUI,OrderUI,CheckOutUI,Exit};//GUIenum{Single,Double,Bi
4、g};//RoomTypeenum{Hour,Day};//countType//--------------------------------全局变量--------------------------intGUI=MainUI;Order*orderList[100];//订单数组Room*roomList[100];//房间数组HotelInfo*hotelInfo=NULL;//酒店房间信息//-------------------------------函数声明----------------------------v
5、oidinitiallizeRoomList();voidinsertToOrderList(Order*order);Room*getRoomByType(introomType);Order*getOrderByRoomNum(introomNum);实用文案标准文档voidshowMainUI();voidshowHotelInfoUI();voidshowCheckinUI();voidshowCheckinResultUI();voidshowOrderUI();voidshowCheckOutUI();//------
6、-------------------------Main函数----------------------------voidmain()//主函数{//初始化酒店房间信息hotelInfo=(HotelInfo*)malloc(sizeof(HotelInfo));hotelInfo->singleRemainAmount=20;hotelInfo->doubleRemainAmount=40;hotelInfo->bigRemainAmount=40;hotelInfo->checkinAmount=0;//初始化房间列表in
7、itiallizeRoomList();//界面显示while(GUI!=Exit){switch(GUI){caseMainUI:showMainUI();实用文案标准文档break;caseHotelInfoUI:showHotelInfoUI();break;caseCheckinUI:showCheckinUI();break;caseCheckinResultUI:showCheckinResultUI();break;caseOrderUI:showOrderUI();break;caseCheckOutUI:show
8、CheckOutUI();break;default:break;}}}//-------------------------------函数定义----------------------------voidinitiallizeRoomList
此文档下载收益归作者所有