欢迎来到天天文库
浏览记录
ID:11251928
大小:91.00 KB
页数:0页
时间:2018-07-11
《c语言 宾馆客房管理系统》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、C语言宾馆客房管理系统!!!?宾馆客房管理系统宾馆的客房销售是宾馆的主要利润来源。要求针对客房的属性,如房号、房价(只要分为三个档次价格即可)、入住情况、维护状况进行分析编程,要求实现若干功能,如:能够随时地通过程序查看每间客房的状态,查讯各种价位的空房数量和具体房号、查讯各种价位客房的入住数量和房号,当前正在维修的所有客房房号,随时统计当月的销售总收入,在文件中记录每个房间入住和退房情况及单价、毛利收入,根据上个月的文件记录,次月可以统计上个月的销售总收入等等。该管理系统运行时是一个循环式的菜单选
2、项,能依据选项选择各种功能。并能依据需求,将结果打印在屏幕或打印到文件中。#include#include#include//***********************************************************************************voidinitial_room();//初始化80个房间信息voidwelcome();//验证用户登陆,登陆成功显示欢迎信息voidenter();v
3、oidbook_room();voidcheck_in();voidcheck_out();voidinquire();inti=0;//***********************************************************************************structRoom{intnumber;intdank;intprice;intstate;};structCustomer{charname[10],ID[19];introom_number;i
4、ntprepaid;intchange;intday;};voidset_name(structCustomer*cs,char*n){strcpy(cs->name,n);}voidset_ID(structCustomer*cs,char*p){strcpy(cs->ID,p);}voidset_room_number(structCustomer*cs,intn){cs->room_number=n;}voidset_day(structCustomer*cs,intd){cs->day=d;
5、}voidset_prepaid(structCustomer*cs,intp){cs->prepaid=p;}char*get_name(structCustomer*cs){returncs->name;}char*get_ID(structCustomer*cs){returncs->ID;}intget_room_number(structCustomer*cs){returncs->room_number;}intget_day(structCustomer*cs){returncs->d
6、ay;}intget_prepaid(structCustomer*cs){returncs->prepaid;}//***********************************************************************************structRoomroom[80];structCustomer*customer[80];voidCCustomer(structCustomer*cs){printf("请您输入顾客的姓名");scanf("%
7、s",&cs->name);printf("请您输入顾客的身份证号码");scanf("%s",&cs->ID);cs->prepaid=cs->change=cs->day=0;}voidFCustomer(){printf("该顾客退房成功!");}intmain(void)//程序入口从这里开始运行{charchoice='1';initial_room();//初始化80个房间的信息,分四个等级welcome();//验证用户登陆,登陆成功显示欢迎信息while(choice=='1')
8、{enter();//根据用户的选择执行不同的功能printf("");printf("继续使用本系统请按"1",退出请按"2"!");fflush(stdin);scanf("%c",&choice);printf("");}return0;}//系统登陆界面***********************************************************************voidwelcome()//验证用户登陆,登陆成功
此文档下载收益归作者所有