Question: java, task1: Create a class called Hotel that includes: numberOfRooms (int). It can be accessed in any class. In addition, it's value cannot be changed

java, task1: Create a class called Hotel that includes:

numberOfRooms (int). It can be accessed in any class. In addition, it's value cannot be changed during the run, and this value will be shared by all objects.

numberOfReservedRooms (int). It can be accessed by this class only, and its value will be shared by all objects.

numberOfAvailableRooms (int). It can be accessed by this class only, and its value will be shared by all objects.

A constructor receives the numberOf WantedRoomsToReserve and:

Increase the reserved rooms

Decrease the available rooms

Constructor with no-arg to invoke the first constructor and:

Increase the reserved rooms by 1.

Decrease the available rooms by 1.

Getters for the required variables.

Task 2: Create an Employee class includes two methods: getAvailablity and main methods.

getAvailable

This method receives the number of wanted rooms, and return true according to the NumberOfAvailableRooms. If the available rooms greater than or equal to the customer request. Otherwise, it will return false.

main

Create a Hotel object using the no-arg constructor.

Ask the user to enter the number of wanted rooms, and check if the customer can reserve these rooms or not using getAvailabilty method.

If this number of rooms is available, create an object to reserve rooms for the costumer.

Task3: Print all Hotel information

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!