JAVA控制台酒店管理系统
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
酒店管理系统
要求:
【酒店前台客房管理程序】HotelRoomManagement.java
某酒店有12层楼,每层楼有10个房间,要求为该酒店设计一套简单的前台房间管理程序,
该程序可以通过在命令行输入命令来为客人办理入住和退房手续。
要求该程序支持通过命令行输入以下命令来进行入住,退房及查询的操作:
(1)search():查询所有房间的状态empty
(2)in(房间号码姓名):客人入住
命令:in
请输入客人入住的房间号
1202
请输入入住1202房间的顾客的姓名
parker
提示:姓名为parker的客人入住1202房间
(3)out(房间号码):客人退房
命令:out 1202
提示:1202房间退房
注意:如果某个房间已经有客人入住,在办理入住时,将提示“该房间已有客人入住”
(4)quit:退出程序
本程序基于java jdk 7.0 调试通过
package com.zhongx.day14;
import java.util.Scanner;
public class HotelRoomManagement {
static Scanner in = new Scanner(System.in);
public static void main(String[] args){
String[][] hotel = new String[12][10];
System.out.println("欢迎光临皇家大酒店");
System.out.println("查询请按search,入住请按in,退房请按out!");
while(true){
String command = in.next();
if("search".equals(command)){
search(hotel);
}else if("in".equals(command)){
in(hotel);
}else if("out".equals(command)){
out(hotel);
}else if("quit".equals(command)){
return;
}else if("init".equals(command)){
init(hotel);
}else{
System.out.println("您输入的命令有误");
}
}
}
public static void init(String[][] room){
for(int i=0;i for(int j=0;j room[i][j] = "EMPTY"; } } System.out.println("系统初始化完成"); } //查询所有房间的方法 public static void search(String[][] room){ //System.out.println("查询"); for(int i=0;i for(int j=0;j if(i<9){ System.out.print("0"); } int roomNO = (i+1)*100+j+1; System.out.print(roomNO+"\t"); } System.out.println(); for(int k=0;k System.out.print(room[i][k]+"\t"); } System.out.println(); } } //客户入住的方法 public static void in(String[][] room){ //System.out.println("入住"); System.out.println("请输入入住的房间号码"); int roomNO = in.nextInt(); int floor = roomNO/100; int no = roomNO%100; if(floor>12||no>10||floor<1||no<1){ System.out.println("房间不存在,请按in命令继续输入!"); }else{ if("EMPTY".equals(room[floor-1][no-1])){ System.out.println("请输入您的姓名"); String name = in.next(); room[floor-1][no-1] = name; System.out.println("入住成功,祝您入住愉快"); }else{ System.out.println("此房间已经入住,请换个房间入住!请按in命令继续"); } } } //客户退房的方法 public static void out(String[][] room){ System.out.println("请输入要退房的房间号"); int roomNO = in.nextInt(); int floor = roomNO/100 - 1;//获取楼层号对应的下标 int no = roomNO%100 - 1;//获取房间号对应的下标 if(floor>11||no>10||floor<0||no<0){ System.out.println("房间不存在,请按out命令继续输入!"); }else{ if(("EMPTY").equals(room[floor][no])){ System.out.println("该房间暂未有人入住,无需退房"); }else{ room[floor][no] = "EMPTY"; System.out.println(roomNO + " 号房间退房成功"); } } } }