You are on page 1of 1

FINAL PROJECT: RESTAURANT RESERVATION SYSTEM

Write a simple restaurant reservation program. Please see the example below

1. When the program is compiled, it will display the following options (your program will
automatically create the file):

RESTAURANT RESERVATION SYSTEM

1. VIEW ALL RESERVATION


2. MAKE RESERVATION
3. DELETE RESERVATION
4. EXIT

2. When the VIEW RESERVATION is selected, the following information will be displayed

NO. DATE TIME NAME ADULTS CHILDREN

1 APR 1, 2022 2:00 PM JUAN MAGBALANTAY 1 2

2 APR 2, 2022 1:00 PM PEDRO BALAGTAS 2 2

3 APR 10, 2022 5:00 PM MARIA SANTOS 3 1

3. If MAKE RESERVATION is selected, the user needs to input the following:


a. Name (String)
b. Date (String)
c. Time (String)
d. No of Adults (int)
e. No of Children (int)

4. If DELETE RESRVATION is chosen, the user needs to input the reservation number to remove
existing reservation from the file.

5. When EXIT is selected, it will terminate the program.


6. Use necessary exception handling to catch possible errors made by the user.

------------------------------------------------------GOOD LUCK--------------------------------------------------------------------

You might also like