Question

C ++ Project Description

The BlueMont chain hotels have 4 different types of room:

Single room: $60/night

Double room: $75/night

King room:   $100/night

Suite room: $150/night

The size of the hotel chains in different locations may be different in terms of the number of floors and the type and the number of rooms on each floor.

You are required to write a program that calculates the occupancy rate and the total hotel income for one night and displays this information as well as some other information described below.

The program starts by asking the location where this hotel chain is located and the number of floors in the hotel. The number of floors may not exceed 5.  The User then enters the total number of rooms for each floor. The program then asks specifically the number of occupied rooms for each room type on this floor. The total number of rooms on each floor may not exceed 30 and the program should check that the total number of occupied rooms on each floor does not exceed the total of rooms on that floor.

After the information is entered for each floor, the program calculates the following:

- Hotel income (based on the room type and its rate),

- The total number of occupied rooms,

- Total number of the uncopied rooms,

- The rate of occupancy,

- Floor number with the minimum number of rooms. (Assume no two floors have the same number of rooms).

- A message to improve the occupancy rate for the occupancy rate of less than 60%.

- Programmer’s full name

- Project number

- Project due date

Project Specifications

-Use constant variables to hold room rates, max and min # of floors and rooms.

-The program should continuously ask for the correct floor number if it is not within the range of 1 and 5.

-The program should continuously ask for the correct number of rooms for each floor if it is not within the range of 1 and 30.

-The program should repeat the process of asking the number of rooms on the floor and number of occupied rooms if the total number of occupied rooms exceeds the total number of rooms on the floor.C:\Windows\system32\cmd.exe Blue Mont Hotel ========================================================= Enter the loacation of

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Code:

#include <iostream>

#include <string>

#include <iomanip>

using namespace std;

int main() {

string location;

int i, floors, rooms[30], singleRoom[10], doubleRoom[10], kingRoom[10], suiteRoom[10];

int singleRoomRate = 60, doubleRoomRate = 75, kingRoomRate = 100, suiteRoomRate = 150;

int unoccupied, min;

double totalRooms = 0, occupiedRooms = 0, income = 0.0, occupancyRate;

int sum = 0;

cout << fixed << setprecision(2);

cout << "====================================================\n";

cout << right << setw(30) << "BlueMount Hotel\n";

cout << "====================================================\n";

cout << "Enter the Location of this hotel chain: ";

cin >> location;

cout << "Enter total number of floors of the hotel: ";

cin >> floors;

while (floors <= 0 || floors > 5) {

    cout << "number of floors should be between 1 and 5 !! please try again.\n";

    cout << "\nEnter total number of floors of the hotel: ";

    cin >> floors;

}

for (i = 1; i <= floors; i++) {

    cout << "\n\nEnter total number of rooms in the " << i << "th floor: ";

    cin >> rooms[i];

    while (rooms[i] <= 0 || rooms[i] > 30) {

      cout << "number of rooms should be between 1 and 30 !! please try again.\n\n";

      cout << "Enter total number of rooms in the " << i << "th floor : ";

      cin >> rooms[i];

    }

    cout << "How many SINGLE rooms are occupied in the " << i << "th floor : ";

    cin >> singleRoom[i];

    cout << "How many DOUBLE rooms are occupied in the " << i << "th floor : ";

    cin >> doubleRoom[i];

    cout << "How many KING rooms are occupied in the " << i << "th floor : ";

    cin >> kingRoom[i];

    cout << "How many SUITE rooms are occupied in the " << i << "th floor : ";

    cin >> suiteRoom[i];

    sum = singleRoom[i] + doubleRoom[i] + kingRoom[i] + suiteRoom[i];

    while (sum > rooms[i]) {

      cout << "Total number of occupied rooms exceeds the total number of " <<

        "rooms on this floor. Please try again!!";

      sum = 0;

      cout << "\n\nEnter total number of rooms in the " << i << "th floor : ";

      cin >> rooms[i];

      while (rooms[i] <= 0 || rooms[i] > 30) {

        cout << "number of rooms should be between 1 and 30 !! please try again.\n\n";

        cout << "Enter total number of rooms in the " << i << "th floor : ";

        cin >> rooms[i];

      }

      cout << "How many SINGLE rooms are occupied in the " << i << "th floor : ";

      cin >> singleRoom[i];

      cout << "How many DOUBLE rooms are occupied in the " << i << "th floor : ";

      cin >> doubleRoom[i];

      cout << "How many KING rooms are occupied in the " << i << "th floor : ";

      cin >> kingRoom[i];

      cout << "How many SUITE rooms are occupied in the " << i << "th floor : ";

      cin >> suiteRoom[i];

      sum = singleRoom[i] + doubleRoom[i] + kingRoom[i] + suiteRoom[i];

    }

}

cout << "\n\n================================================================================\n";

cout << right << setw(40) << "BlueMont Hotel located in " << location << endl << endl;

cout << right << setw(47) << "TODAY'S ROOM RATES<US$/night>" << endl << endl;

cout << right << setw(20) << "Single Room" << setw(20) << "Double Room" << setw(20) <<

    "King Room" << setw(20) << "Suite Room";

cout << endl << endl;

cout << right << setw(20) << singleRoomRate << setw(20) << doubleRoomRate << setw(20) <<

    kingRoomRate << setw(20) << suiteRoomRate;

cout << "\n===================================================================================\n";

for (i = 1; i <= floors; i++) {

    income = income + (singleRoom[i] * singleRoomRate) +

      (doubleRoom[i] * doubleRoomRate) + (kingRoom[i] * kingRoomRate) + (suiteRoom[i] * suiteRoomRate);

    totalRooms = totalRooms + rooms[i];

    occupiedRooms = occupiedRooms + singleRoom[i] + doubleRoom[i] + kingRoom[i] + suiteRoom[i];

}

unoccupied = totalRooms - occupiedRooms;

occupancyRate = (occupiedRooms / totalRooms) * 100;

cout << "\n" << right << setw(35) << "Hotel Income: " << right << setw(10) << "$" << income;

cout << "\n" << right << setw(35) << "Total # of rooms: " << right << setw(10) << totalRooms;

cout << "\n" << right << setw(35) << "Total # Occupied Rooms: " << right << setw(10) << occupiedRooms;

cout << "\n" << right << setw(35) << "Total # Unoccupied Rooms: " << right << setw(10) << unoccupied;

cout << "\n" << right << setw(35) << "Occupancy rate: " << right << setw(10) << occupancyRate << "%";

int r = 1;

min = rooms[1];

for (i = 2; i <= floors; i++) {

    if (rooms[i] < min) {

      min = i;

      r = i;

    }

}

cout << "\n\n" << r << "th Floor with " << rooms[r] << " rooms, has the least # of rooms.";

if (occupancyRate < 60) {

    cout << "\nNeed to improve Hotel occupancy rate!!\n\n";

}

cout << "\n\nThank you for testing my program!!";

cout << "\nPROGRAMEER : YOUR NAME";

cout << "\nCMSC140 Common Project 3";

cout << "\nDue Date: PROJECT DUE DATE\n\n";

return 0;

}

Output:


c. code BlueMount Hotel Enter the Location of this hotel chain: Washington Enter total number of floors of the hotel: numberEEEEEEEEEEEEEEEEEEE============== BlueMont Hotel located in Washington TODAYS ROOM RATES<US$/night> Single Room Double Room

Add a comment
Answer #2

This is correct as I have tired it myself

source: https://www.homeworklib.com/question/1793698/c-project-description-the-bluemont-chain-hotels
answered by: anonymous
Add a comment
Know the answer?
Add Answer to:
C ++ Project Description The BlueMont chain hotels have 4 different types of room: Single room:...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • **Use C++ ** Project Description The BlueMont chain hotels have 4 different types of room: Single...

    **Use C++ ** Project Description The BlueMont chain hotels have 4 different types of room: Single room: $60/night Double room: $75/night King room:   $100/night Suite room: $150/night The size of the hotel chains in different locations may be different in terms of the number of floors and the type and the number of rooms on each floor. You are required to write a program that calculates the occupancy rate and the total hotel income for one night and displays this...

  • Write a complete Java program with methods that prompt user for the number of floors, rooms,...

    Write a complete Java program with methods that prompt user for the number of floors, rooms, occupied rooms in a hotel. You must validate floors, rooms, occupied rooms. Compute vacant rooms, occupancy rate on each floor and display rooms, occupied rooms, vacant rooms and occupancy rate for each floor. Use the given method names. See validation rules below: 1. getFloors(). This method prompts user for number of floors in a hotel and returns floors to the caller. 2. testFloors(floors). Do...

  • I need to output Number of rooms : , Occupied rooms:, Vacant rooms:, and Occupancy rate:,...

    I need to output Number of rooms : , Occupied rooms:, Vacant rooms:, and Occupancy rate:, I've written the java program but I can not get the output I need. What am I doing wrong here? This is a java program and I'm not to use anything advanced, just beginner java programming. Any help would be appreciated import java.util.Scanner; // Needed for the Scanner class /** * This program will read in the number of floors the resort * contains...

  • Public Class Form1     Private Sub CompleteReport_Click(sender As Object, e As EventArgs) Handles CompleteReport.Click         Dim...

    Public Class Form1     Private Sub CompleteReport_Click(sender As Object, e As EventArgs) Handles CompleteReport.Click         Dim room As Double 'Assigns room as double         Dim rate As Double 'Assigns rate as double         Dim room2 As Double 'Assigns room as double         Dim overallRate As Double 'Assigns overall as double         Dim a As Integer 'Assign a as an integer         For a = 1 To 8 'Assign a as an 1 to 8 for all 8 floors             With...

  • Sleepy Hollow Hotels Inc.(SH) operates two hotels in theMeto eion.ach hoeand rooms: standard room...

    Sleepy Hollow Hotels Inc.(SH) operates two hotels in theMeto eion.ach hoeand rooms: standard room and deluxe. SHH has a total of 300 deluxe rooms an following are the relevant budgeted and the actual results for SHH for the a etro region. Each hotel has two grades of reson70t May The ro Sales Revenue for 92 days in the Quarter: Budgeted Revenue Actual Revenue $8,721,600 $8,825,100 Average Daily Occupancy Rates Deluxe Standard # of Rooms 240 285 # of Rooms 490...

  • Sand and Sea Resort (SSR) is a popular hotel with 400 rooms. SSR's regular room rate...

    Sand and Sea Resort (SSR) is a popular hotel with 400 rooms. SSR's regular room rate is $300 per night per room. SSR's cost is $165 per night per room. Below is a breakdown of the SSR's cost: Variable direct labor and materials cost Fixed cost Total cost per night per room $ 165 SSR manager receives an offer to hold the Innovative Scientist Conference at the hotel in March, which is the hotel's low season with an occupancy rate...

  • HomeSuites is a chain of all-suite, extended-stay hotel properties. The chain has 18 properties with an...

    HomeSuites is a chain of all-suite, extended-stay hotel properties. The chain has 18 properties with an average of 220 rooms in each property. In year 1, the occupancy rate (the number of rooms filled divided by the number of rooms available) was 70 percent, based on a 365-day year. The average room rate was $170 for a night. The basic unit of operation is the “night,” which is one room occupied for one night. The operating income for year 1...

  • Problem 13-56 Prepare Budgeted Financial Statements: Comparing Alternatives (LO 13-7) HomeSuites is a chain of all-suite...

    Problem 13-56 Prepare Budgeted Financial Statements: Comparing Alternatives (LO 13-7) HomeSuites is a chain of all-suite, extended-stay hotel properties. The chain has 15 properties with an average of 200 rooms in each property. In year 1, the occupancy rate (the number of rooms filled divided by the number of rooms available) was 70 percent, based on a 365-day year. The average room rate was $180 for a night. The basic unit of operation is the “night,” which is one room...

  • Course Project 1.You are going to research two local hotels. You will need to call or...

    Course Project 1.You are going to research two local hotels. You will need to call or visit the two properties. In addition make sure you research the hotels website and find the response to the following questions in detail: ​a. What is the rack rate for a “standard” room? ​b. What is included in this rate? ​c. What amenities are offered at their property – pool ,restaurant etc.? ​d. Are rates different on the weekend? Higher or Lower? ​e. What...

  • HomeSuites is a chain of all-suite, extended-stay hotel properties. The chain has 16 properties with an...

    HomeSuites is a chain of all-suite, extended-stay hotel properties. The chain has 16 properties with an average of 150 rooms in each property. In year 1, the occupancy rate (the number of rooms filled divided by the number of rooms available) was 70 percent, based on a 365-day year. The average room rate was $204 for a night. The basic unit of operation is the "night," which is one room occupied for one night. The operating income for year 1...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT