An integer double-dimensional array called hotel is used to keep track of reservations in an hotel of 5 floors each floor having 8 rooms. The floors are numbered 1, 2, 3, 4, and 5, and the rooms are numbered 1, 2, 3… 8. Write a C++ program to manage the hotel reservations by completing the following:  Write a function called isFree, that takes the array hotel, the room number and the floor number, and returns true if that room on that floor is free, and false otherwise. A reserved room has a value of 1, whereas a free room has a value of 0.  Write a function called reserveRoom, that takes the array hotel, the room number and the floor number, and reserves that room on that floor. Note that this function should use the function isFree to make sure the room to be reserved is free; otherwise the function should print a message saying the room is already reserved.  Write a function called freeRoom, that takes the array hotel, the room number and the floor number, and frees that room on that floor.  Write a function called countFree, that takes the array hotel, and returns the number of free rooms in the hotel.  Write a function called showHotel, that takes the array hotel, and outputs the status of all rooms in the hotel. The output should look as follows for the hotel:      R01 R02 R03 R04 R05 R06 R07 R08 F1 [x]     [x]    [ ]    [ ]     [ ]     [x]    [ ]    [ ] F2 [ ]      [x]    [x]   [ ]     [x]     [ ]    [ ]    [ ] F3 [x]     [x]    [ ]    [ ]     [ ]      [ ]    [x]   [x] F4 [ ]      [x]    [ ]    [ ]    [x]      [ ]    [x]   [ ] F5 [x]     [ ]     [x]   [ ]     [ ]     [x]    [x]    [x] Using the functions above, write a program that shows the hotel at the start (all rooms are free), then allows a user to manage the hotel through a menu (reserve, free, print, etc.)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 23PE
icon
Related questions
Question

An integer double-dimensional array called hotel is used to keep track of reservations in an
hotel of 5 floors each floor having 8 rooms. The floors are numbered 1, 2, 3, 4, and 5, and the
rooms are numbered 1, 2, 3… 8. Write a C++ program to manage the hotel reservations by
completing the following:
 Write a function called isFree, that takes the array hotel, the room number and the floor
number, and returns true if that room on that floor is free, and false otherwise. A
reserved room has a value of 1, whereas a free room has a value of 0.
 Write a function called reserveRoom, that takes the array hotel, the room number and
the floor number, and reserves that room on that floor. Note that this function should
use the function isFree to make sure the room to be reserved is free; otherwise the
function should print a message saying the room is already reserved.
 Write a function called freeRoom, that takes the array hotel, the room number and the
floor number, and frees that room on that floor.
 Write a function called countFree, that takes the array hotel, and returns the number
of free rooms in the hotel.
 Write a function called showHotel, that takes the array hotel, and outputs the status of
all rooms in the hotel. The output should look as follows for the hotel:
     R01 R02 R03 R04 R05 R06 R07 R08
F1 [x]     [x]    [ ]    [ ]     [ ]     [x]    [ ]    [ ]
F2 [ ]      [x]    [x]   [ ]     [x]     [ ]    [ ]    [ ]
F3 [x]     [x]    [ ]    [ ]     [ ]      [ ]    [x]   [x]
F4 [ ]      [x]    [ ]    [ ]    [x]      [ ]    [x]   [ ]
F5 [x]     [ ]     [x]   [ ]     [ ]     [x]    [x]    [x]
Using the functions above, write a program that shows the hotel at the start (all rooms are free),
then allows a user to manage the hotel through a menu (reserve, free, print, etc.).

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Arrays
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr