java로 호텔을 시뮬레이션 한 프로그램을 만들었고이 프로그램에서 Rooms을 생성자로 만들고 최대 2 개의 생성자 필드 (더 비싸다)를 인쇄하려고합니다. 나는 2 가지 가격의 차이를 반환하는 방법을 만드는 방법을 알고 있지만 가장 비싼 것을 인쇄하는 방법을 모르겠다. 여기 나의 코드가있다. 메인 클래스생성자 필드 최대 수 java
String RoomNumber, Category, View;
int NumberOfBeds;
double Price;
Room RoomA = new Room("C101",2,"Standard","Sea",95.89);
Scanner sc = new Scanner(System.in);
System.out.println("Give room number \n");
RoomNumber=sc.next();
System.out.println("Give number of beds \n");
NumberOfBeds=sc.nextInt();
System.out.println("Give category \n");
Category=sc.next();
System.out.println("Give view \n");
View=sc.next();
System.out.println("Give price \n");
Price=sc.nextDouble();
Room RoomB = new Room(RoomNumber, NumberOfBeds, Category, View, Price);
System.out.println(RoomA.toString());
System.out.println(RoomB.toString());
System.out.println(""); //this is the part I am struggling
이 내 방 클래스
public String RoomNumber;
public int NumberOfBeds;
private String Category;
private String View;
private double Price;
public Room(String RoomNumber, int NumberOfBeds, String Category, String View, double Price){
RoomNumber = this.RoomNumber;
NumberOfBeds = this.NumberOfBeds;
Category = this.Category;
View = this.View;
Price = this.Price;
}
public void setRoomNumber(String roomnumber){
this.RoomNumber = roomnumber;
}
public String getRoomNumber(){
return this.RoomNumber;
}
public void setNumberOfBeds(int numberofbeds){
this.NumberOfBeds = numberofbeds;
}
public int getNumberOfBeds(){
return this.NumberOfBeds;
}
public void setCategory(String category){
this.Category = category;
}
public String getCategory(){
return this.Category;
}
public void setView(String view){
this.View = view;
}
public String getView(){
return this.View;
}
public void setPrice(double price){
this.Price = price;
}
public double getPrice(){
return this.Price;
}
public double getPriceDifference(double double1, double double2){
if (double1 > double2){
return double1-double2; //and i know that here is the part i must add something
}else{
return double2-double1;
}
}
@Override
public String toString() {
return "Room number:" + this.RoomNumber + ",\n "
+ "Number of beds:" + this.NumberOfBeds + ",\n " + "Category:"
+ this.Category + ",\n " + "View:" + this.View + ",\n " + "Price:" + this.Price;
}
[PascalCase] (https://en.wikipedia.org/wiki/PascalCase)에 대한 클래스 등. [lowerCamelCase] (https://en.wikipedia.org/wiki/Camel_case) 메소드, 변수 등. – Kayaman