I am new to JAVA and so far, we've only done 3 -4 codes by ourselves and each time, I am pretty sure I failed. What I need help for is this code. How do I get started? Help step by step please.
Question: Hotel Occupancy
A hotel's occupancy rate is calculated as follows:
Occupancy rate = number of rooms occupied / Total number of rooms
Each floor has its floor occupancy rate, and the hotel also has overall occupancy rate.
Write a program that calculate the occupancy rate for each floor of a hotel and the overall occupancy rate of the hotel. The program should start by asking for the number of floors (must be no less than 1). A loop should then iterate once for each floor. During each iteration, the loop should ask the user to enter the number of rooms on the floor and the number of them that are occupied (each floor must have at least 10 rooms). The the program will calculate and display the occupancy rate for that floor. After all the iterations, the program should calculate the overall occupancy rate of the hotel. Then program should display the total number of rooms the hotel has, the total number of rooms that are occupied, the total number of rooms that are vacant, and the overall occupancy rate for the hotel.
For example, suppose a hotel has 2 floors.
first floor: 100 rooms, 80 occupied. Then occupancy rate is 80%
second floor: 80 rooms, 52 occupied. The occupancy rate is 65%
The hotel has 180 rooms together, 132 occupied, 48 vacant, the overall occupancy rate is 73.3%
Input validation: do not accept a value less than 1 for the number of floors. Do not accept a number less than 10 for the number of rooms on a floor. The number of rooms occupied on a floor cannot be greater than the number of rooms on that floor.