专业资料
/*
*
*题目 :旅店信息管理系统
*
*小组成员 :闫若琳 戴雨晨 马渊沐 张子飞 李闯
王浩 崔以博 孙浩浩 李春普 温健成
*/
#include stdio.h
#include conio.h
#include stdlib.h
#include string.h
#define MIN 1
#define MAX 30
#define LEN sizeof(struct Hotel) // 用 LEN 代替结构体的 长度
void regeist();
void out_information();
void search_number();
void show_all();
word 完美格式
专业资料
void search_name();
void change();
void fire();
struct Hotel *load();
FILE *fp;
struct Hotel
{
int room_number;
char name [20];
char sex[10];
char ID [20];
float paid[10];
int inyear ;
int inmonth ;
int inday ;
struct Hotel *next ;
};
word 完美格式
专业资料
struct Hotel *load() // 定义
原创力文档

文档评论(0)