好的,基本上我正在创建一家提供以下选项的酒店
System.out.println("V: To View all rooms");
System.out.println("A: To Add customer to a room");
System.out.println("E: To Display empty rooms");
System.out.println("D: To Delete customer from a room");
System.out.println("F: Find room from customer name");
System.out.println("O: View rooms alphabetically by name");
- 现在,我可以进行查看、添加客户、显示空房间和删除”。
- 但是,我刚刚意识到我不能添加多个客户。该代码将简单地将具有相同名称的客户分配给所选的每个房间。
示例:如果我将名称 TOM 添加到房间 2,然后将 DENNIS 添加到房间 3。房间 2 和房间 3 表明它被丹尼斯占用。- 我知道为什么,因为 String 客户只能存储一个信息。
我觉得我需要将客户更改为数组。
(请记住,我不想使用 ArrayList)。
SO:我的问题是,我该如何解决这个问题?因为我试图将 Customer 作为一个数组使用并且我破坏了整个编码(感谢本地历史还原!)
代码:
package testroom;
import java.util.*;
public class TestRoom{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
String Customer = null;
int roomNum = 1;
String Option;
String[] hotel = new String[12];
initialise(hotel);
while ( roomNum < 11 )
{
System.out.println("Hotel Booking Options");
System.out.println("V: To View all rooms");
System.out.println("A: To Add customer to a room");
System.out.println("E: To Display empty rooms");
System.out.println("D: To Delete customer from a room");
System.out.println("F: Find room from customer name");
System.out.println("O: View rooms alphabetically by name");
Option = input.next();
if (Option.equals("V")){ //viewing all rooms
view(hotel, Customer);
}
if (Option.equals("A")){ // adding a customer to a room
System.out.println("Enter room number(1-10)");
roomNum =input.nextInt();
System.out.println("Enter name for room " + roomNum + " : " ) ;
Customer = input.next();
hotel[roomNum] = Customer ;
add(hotel, Customer);
System.out.println(" ");
}
if (Option.equals("E")){ //view all empty rooms
vacant(hotel, Customer); //links to private static void empty
}
if (Option.equals("D")){ //Deletes a customer from a room
//Searches if room is occupied, if it is then it will delete customer from that room
view(hotel, Customer);
System.out.println("Enter the room which you want to delete a customer from: ");
roomNum = input.nextInt();
hotel[roomNum] = "empty";
delete(hotel, Customer);
System.out.println("");
}
if (Option.equals("F")){ //view all empty rooms
find(hotel); //links to private static void empty
}
}
}
private static void initialise( String hotelRef[] )
{
for (int x = 1; x < 11; x++ )
hotelRef[x] = "empty";
System.out.println( "Welcome to The Plaza");
}
public static void view(String hotel[], String Customer){
for (int x =1; x <11; x++)
{
int z=0;
String Customername = Customer;
hotel[z]= Customername;
if (hotel[x].equals("empty"))
System.out.println("room " + x + " is empty");
else {
System.out.println("room " + x + " is occupied by "+ hotel[z]);
}
}
}
private static void add(String hotel[], String Customer){
for (int x =1; x <11; x++)
{
int z=0;
String Customername = Customer;
hotel[z]= Customername;
if (hotel[x].equals("empty"))
System.out.println("room " + x + " is empty");
else {
System.out.println("room " + x + " is occupied by "+ hotel[z]);
}
}
}
private static void vacant(String hotel[], String Customer){
for (int x = 1; x < 11; x++ )
{
int z=0;
String Customername = Customer;
hotel[z]= Customername;
if (hotel[x].equals("empty")) //if statement
System.out.println("room " + x + " is empty");
}
}
private static void delete(String hotel[], String Customer){ //link to this when pressed the D key
//view (hotel);
for (int x = 1; x < 11; x++ )
{
int z=0;
String Customername = Customer;
hotel[z]= Customername;
if (hotel[x].equals("empty"))
{
System.out.println("room " + x + " is empty");
}
else {
System.out.println("room " + x + " occupied by " + hotel[x]);
}
}
}
private static void find(String hotel[]){
Scanner input = new Scanner(System.in);
System.out.println("Enter customer name for room:" );
String customersname;
customersname = input.next(); //stores name they enter as customers name
for (int x = 0; x < 10; x++ )
{
if (hotel[x].equals(customersname))
System.out.println("room " + x + " is occupied by "+hotel[x]);
}
}
}