首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴C残血流的代码贴全部
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
#include <string.h>
#define MIN 1 //宏定义房间序号的最小值
#define MAX 30 //宏定义房间序号的最大值
#define LEN sizeof(struct Hotel) //用LEN代替结构体的"长度"

char menu_select(); //函数声明 
struct Hotel * regeist();
void in_information();
void out_information();
......................
阅读全部 | 2013年5月9日 19:46
1
C残血流