Question: Write in java pls!!!!! A hotel's occupancy rate is calculated as follows: = / Write a program that calculates the occupancy rate for each floor
Write in java pls!!!!!
A hotel's occupancy rate is calculated as follows:
= /
Write a program that calculates the occupancy rate for each floor of a hotel. The program should start by asking for the number of floors in the hotel. A loop should then iterate once for each floor. During each iteration, the loop should ask the user for the number of rooms on the floor and the number of them that are occupied. After all the iterations, the program should display the number of rooms the hotel has, the number of them that are occupied, the number that is vacant, and the occupancy rate for the hotel.
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.
Instead of asking the user to determine the number of rooms occupied per floor, generate the number of rooms occupied per floor randomly between 1 and the number of rooms on the floor. Follow other instructions for this question as-is.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
