Question: On the last line - cout #include #include #include using namespace std; int main(){ int numOfFloors, numOfRooms, i,OccupiedRooms, percentageFilled = 0; int totalRooms=0,totalOccupied=0, totalUnoccupied =
On the last line - cout


#include
#include
#include
using namespace std;
int main(){
int numOfFloors, numOfRooms, i,OccupiedRooms, percentageFilled = 0;
int totalRooms=0,totalOccupied=0, totalUnoccupied = 0;
cout
cin >> numOfFloors;
//Error Checking
while(numOfFloors
{ cout
cin >> numOfFloors;}
for(i = 1; i
//Skip the 13th Floor
if(i==13)
continue;
//Get information from user
cout
cin >> numOfRooms;
//Error Checking
while(numOfRooms
{ cout
cin >> numOfRooms;}
//Add up all the number of rooms from every floor
totalRooms += numOfRooms;
cout
cin >> OccupiedRooms;
//Error Checking
while(OccupiedRooms > numOfRooms)
{ cout
cin >> OccupiedRooms;}
//Add up all the number of occupied rooms from every floor
totalOccupied += OccupiedRooms;
totalUnoccupied = totalRooms - totalOccupied;
percentageFilled = totalOccupied / totalRooms;
}
//print the results
cout
cout
cout
/* Percentage may be calculated by dividing the number of occupied rooms by the total amount of rooms*/
cout
}
9. Hotel Occupancy Write a program that calculates the occupancy rate for a hotel. The program should start by asking the user how many floors the hotel has. A loop should then iterate once for each floor. In each iteration, the loop should ask the user for the number of rooms on the floor and how many of them are occupied. After all the iterations, the program should display how many rooms the hotel has, how many of them are occupied, how many are unoccupied, and the percentage of rooms that are occupied. The percentage may be calculated by dividing the number of rooms occupied by the number of rooms NOTE: It is traditional that most hotels do not have a thirteenth floor. The loop in this program should skip the entire thirteenth iteration
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
