欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    C语言课程设计-宾馆客房管理系统.docx

    • 资源ID:26930613       资源大小:14.80KB        全文页数:16页
    • 资源格式: DOCX        下载积分:30金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要30金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    C语言课程设计-宾馆客房管理系统.docx

    C语言课程设计-宾馆客房管理系统 宾馆客房管理系统课程设计报告 题目宾馆客房管理系统 学号 姓名 同组成员 年级专业09级电子信息工程(2)班 指导教师 完成日期2022 年06 月20 日 报告目录 1.课题要求 2.课题分析 3.成员分工 4.程序流程图 5.程序代码及调试 6.小节及收获体会 7. 参考书籍: 一、课题要求: 某宾馆有301、302、303、304、305五个标准间,每个标准间可住2人; 链表存储结构:姓名、性别、房号、后续指针,按房间号有序; 能实现入住(注意性别)和退房,能按给定姓名、房号查询; 建议采用链表结构,但用其它方法实现也可。 二、课题分析: 本程序是针对宾馆客房管理所设计的系统软件。我们借助C语言作为编写工具,以TurboC作为编译环境,以静态链表作为编写方法,通过对系统库函数的选择调用以及对所写函数的有机整合,辅之以规整的页面设计,从而完成课题内容的程序设计部分。 程序中我们定义了一个结构体struct hotel,用它来存储用户信息,并以他为操作对象实现其他功能。结构体中包括用户的姓名、性别、(均为包含两个元素的一位字符数组)房号及后续指针。 程序中含有定义函数如下: Message、main、choice、live_in(包含live_in_one、live_in_two)、live_away、check_through。 主函数实现对choice、live_in、live_away、check_through的声明以及选择性调用。Choice是界面输出函数,Message是住房信息输出函数,live-in、live_away、check_through分别是入住、退房、 查询函数。live_in可实现单人入住和双人入住的双重选择,check_through可满足按姓名和房号查询的两种方式。通过对程序的相应操作可以基本实现课题要求。 三、成员分工: 袁家文负责Message、main、Choice函数,夏楠负责Live_in、Live in _one和Live in_two函数,我负责Live_away、Look_through 函数。 四、程序流程图: 五、程序代码及调试: (1)代码: #include #include #include #define NULL 0 struct hotel int num; char name220; char sex2; struct hotel *next; ; void message(struct hotel *p1) textcolor(8); clrscr(); gotoxy(8,5); printf(" *n"); gotoxy(8,6); printf(" WELCOME TO OUR HOTELn"); gotoxy(8,7); printf(" *n"); gotoxy(8,8); printf(" * roomnum name1 sex1 name2 sex2 n"); gotoxy(8,10); printf(" * %d %s %c %s %c n",p1->num,p1->name0,p1->sex0,p1->name1,p1->sex1); p1=p1->next; gotoxy(8,12); printf(" * %d %s %c %s %c n",p1->num,p1->name0,p1->sex0,p1->name1,p1->sex1); p1=p1->next; gotoxy(8,14); printf(" * %d %s %c %s %c n",p1->num,p1->name0,p1->sex0,p1->name1,p1->sex1); p1=p1->next; gotoxy(8,16); printf(" * %d %s %c %s %c n",p1->num,p1->name0,p1->sex0,p1->name1,p1->sex1); p1=p1->next; gotoxy(8,18); printf(" * %d %s %c %s %c n",p1->num,p1->name0,p1->sex0,p1->name1,p1->sex1); gotoxy(8,20); printf(" *n"); void main() void choice(struct hotel *p2); void live_in(struct hotel *p3); void live_away(struct hotel *p4); void check_through(struct hotel *p5); struct hotel *p,*head,a,b,c,d,e; int i; a.num=301; b.num=302; c.num=303; d.num=304; e.num=305; 00= 10= 00= 10= 00= 1 0= 00= 10= 00= 10='0' a.sex0=a.sex1= b.sex0=b.sex1= c.sex0=c.sex1= d.sex0=d.sex1= e.s ex0=e.sex1=' ' head=&a; a.next=&b; b.next=&c; c.next=&d; d.next=&e; e.next=NULL; p=head; choice(p); void choice(struct hotel *p2) struct hotel *pt; int x; textcolor(5); clrscr(); gotoxy(10,5); printf(" *n"); gotoxy(10,7); printf(" * 1.To Live In n"); gotoxy(10,9); printf(" * 2.To Live Awway n"); gotoxy(10,11); printf(" * 3.To Look Through n"); gotoxy(10,13); printf(" Please Insert The Number To Choose The Sevicen"); gotoxy(10,15); printf(" *n"); scanf("%d",&x); switch(x) case 1:live_in(p2);break; case 2:live_away(p2);break; case 3:check_through(p2);break; void live_in(struct hotel *p3) void live_in_two(struct hotel *p3_1); void live_in_one(struct hotel *p3_2); struct hotel *pt; int x,m; char str20,ch,str120,ch1;clrscr(); textcolor(4); pt=p3; while(1) printf(" Are you contiune to live in?n 1.YESn 2.NOn"); scanf("%d",&m); switch(m) case 1: printf(" Choose The Room That You Want To Live Inn"); scanf("%d",&x); if(x>300&&xnum!=x) pt=pt->next; if(pt->sex0=' '|pt->sex1=' ') if(pt->sex0=' '&&pt->sex1=' ') live_in_two(pt);message(p3); else live_in_one(pt);message(p3); else printf("The room is fulln"); else printf("PLEASE ENTER THE RIGHT NUMBER FROM 301 TO 305");break; case 2:choice(p3);break; void live_in_two(struct hotel *p3_1) struct hotel *pt; int x; char str20,ch,str120,ch1;clrscr(); textcolor(4);pt=p3_1; gotoxy(10,7); printf(" IT ALLOWS TWO PEOPLE TO LIVE INn"); gotoxy(10,9); printf(" *1.Two People Live In n"); gotoxy(10,10); printf( " *2.One People Lives Inn"); gotoxy(10,12); printf(" *3.returnn"); printf(" Inset The Number To Make Your Chiocen"); scanf("%d",&x); switch(x) case 1:gotoxy(10,14); printf(" *please give the message of the two customersn"); gotoxy(10,16); printf(" *1.one customer's name and sexn:"); scanf("%s",&str); scanf("%c",&ch); ch=getchar(); gotoxy(10,18); printf(" *2.the other's name and sex:n"); scanf("%s",&str1);scanf("%c",&ch1);ch1=getchar(); strcpy(pt->name0,str);pt->sex0=ch; strcpy(pt->name1,str1);pt->sex1=ch1;break; case 2: gotoxy(10,20); printf(" *please give the name and sex:n"); scanf("%s",&str);scanf("%c",&ch);ch=getchar(); strcpy(pt->name0,str);pt->sex0=ch; break; case 3:choice(p3_1);break; void live_in_one(struct hotel *p3_2) struct hotel *pt; int x; char str20,ch;clrscr(); pt=p3_2;textcolor(4); printf(" IT ONLY ALLOWS ONE PERSON TO LIVE IN.nDO YOU WANT TO CONTINUE?n"); gotoxy(10,7); printf(" *1.LIVE IN n"); printf(" *2.REBACKn"); scanf("%d",&x); switch(x) gotoxy(10,9); case 1: gotoxy(10,11); printf(" please give the name and sex:n"); scanf("%s",&str); scanf("%c",&ch); ch=getchar(); if(pt->sex0=' ') strcpy(pt->name0,str); pt->sex0=ch; else strcpy(pt->name1,str); pt->sex1=ch;break; case 2:choice(p3_2);break; void live_away(struct hotel *p4) struct hotel *pt; 安徽师范大学物理与电子信息学院- 10 int x,i,m; char str20; textcolor(2); clrscr(); pt=p4; while(1) printf(" Are you contiune to live away?n 1.YESn 2.NOn"); scanf("%d",&m); switch(m) case 1: printf(" What The Room That You Live In?:n"); scanf("%d",&x); if(x>300&&xnum!=x) pt=pt->next; printf(" GIVE YOUR NAME:n"); scanf("%s",&str); for(i=0;inamei,str)=0) pt->namei0='0'pt->sexi=' 'message(p4); else choice(p4); printf(" YOUR NAME CANN'T BE FOUND IN THIS ROOMn"); else choice(p4); printf(" PLEASE GIVE THE RIGHT NUMBERn"); break; case 2: choice(p4);break; 安徽师范大学物理与电子信息学院- 11

    注意事项

    本文(C语言课程设计-宾馆客房管理系统.docx)为本站会员(h****)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开