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