Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Viusal Studio C++) Restaurant Reservation System Your job is to create a reservation system for a restaurant. The restaurant has 20 tables. Here is the

Viusal Studio C++)

Restaurant Reservation System

Your job is to create a reservation system for a restaurant. The restaurant has 20 tables. Here is the functionality required for this system (you may want to display a menu and let user choose options 1 to 4, make sure to put your program in a loop so program does not exit until user chooses menu 0): 1- Reserve a Table User needs to input the table number (Tables are numbered from 0 to 19). If the table is not available (reserved), inform the user that the selected table is not available. If the table is available, then ask for the name (name is a single word, no space) and mark the table as reserved. 2- Clear Reservation User needs to input the table number (Tables are numbered from 0 to 19). If the table is not reserved, inform the user that the selected table is already available (nothing to clear). If the table is reserved, mark it as available. That table is no longer reserved. 3- Report Prints out the state of each table. Each table is printed on a separate line -- so your report will print out 20 rows. If reserved, it will print out the name on the reservation next to the table number. If available, it should print out "available". 0- Exit Program. I would recommend either:

a) keeping two arrays (parallel arrays!), both are size 20, one of type boolean (true/false -- reserved/available) and the other one of type string (name on reservation if reserved, blank otherwise).

b) keeping a single array of size 20 of type string. At the beginning of the program, set all the tables to "AVAILABLE". As tables get reserved, set the table array item as the name on the reservation . If the value on a table is "AVAILABLE" then the table is available (not reserved) otherwise, the table is reserved and the value is the name on the reservation.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions