1. 首页
  2. 课程学习
  3. C++/C
  4. 客房资料管理系统

客房资料管理系统

上传者: 2019-04-08 02:32:01上传 TXT文件 5KB 热度 17次
要用vs2010运行 #include #include #include using namespace std; class list; class room { friend class list; private: char num[8]; //房间号码 int capacity; //房间容量 int grade; //房间档次 double price; //房间价格 int checked; //房间已入住人数 public: room():checked(0){}; int checkIn(int n);
用户评论