欢迎来到天天文库
浏览记录
ID:53879026
大小:37.50 KB
页数:12页
时间:2020-04-10
《C语言旅馆信息管理系统.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、/***题目:旅店信息管理系统**小组成员:闫若琳戴雨晨马渊沐张子飞李闯王浩崔以博孙浩浩李春普温健成*/#include#include#include#include#defineMIN1#defineMAX30#defineLENsizeof(structHotel)//用LEN代替结构体的"长度"voidregeist();voidout_information();voidsearch_number();voidshow_
2、all();voidsearch_name();voidchange();voidfire();structHotel*load();FILE*fp;structHotel{introom_number;charname[20];charsex[10];charID[20];floatpaid[10];intinyear;intinmonth;intinday;structHotel*next;};structHotel*load()//定义load函数读取当前的信息,并存到内存链表中{structHot
3、el*head,*pb,*s;pb=(structHotel*)malloc(LEN);//开辟新的节点s=(structHotel*)malloc(LEN);if((pb==NULL)
4、
5、(s==NULL)){printf("动态内存分配失败!");getch();exit(0);}if((fp=fopen("resturant.txt","rb"))==NULL){printf("无法打开文件!");getch();exit(0);}head=pb;while(fread(s,LEN,1,fp
6、))//读取当前的信息,并存到链表中{pb->next=s;pb=s;s=(structHotel*)malloc(LEN);}pb->next=NULL;returnhead;//返回链表的头指针}intmain()//崔以博、孙浩浩{charchoice;do{printf("--------------------------欢迎使用旅店信息管理系统---------------------------");printf("1.查看旅店信息2.查看某一房间信息3.查看旅客信息
7、");printf("4.查找某一旅客信息5.旅客入住6.旅客换房7.旅客退房8.退出");printf("-----------------------------------------------------------------------------");choice=getch();switch(choice){case'1':out_information();break;case'2':search_number();break;case'3':show_
8、all();break;case'4':search_name();break;case'5':regeist();break;case'6':change();break;case'7':fire();break;case'8':exit(0);break;default:printf("Error!");break;}printf("请按任意键继续!");getch();system("cls");}while(1);return0;}voidout_information()//张子飞:
9、定义out_information函数,完成查看旅店信息功能{FILE*fp;charch;if((fp=fopen("information.txt","r"))==NULL){printf("无法打开文件!");getch();exit(0);}ch=fgetc(fp);system("cls");printf("ttt旅店信息介绍:(若没有信息请返回创建)");printf("---------------------------------------------------
10、----------------------------t");while(ch!=EOF){putchar(ch);ch=fgetc(fp);}fclose(fp);}voidsearch_number()//李春普、温健成:定义search_number函数,用来完成查看某一房间的信息{charch[2];introom_number;structHotel*head,*pa;head=load();printf
此文档下载收益归作者所有