Write a C++ program to help a local restaurant manage customer orders. Present the menu to the user, allow them to make
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
Write a C++ program to help a local restaurant manage customer orders. Present the menu to the user, allow them to make
Write a C++ program to help a local restaurant manage customerorders. Present the menu to the user, allow them to make aselection from the Food menu. Once the user has made a selectionprompt the user if they would like to view the menu again, use a dowhile for this. If they select yes show the menu again and promptthem to select another item in the menu, if they select no,terminate the loop and display their total cost of the food theyselected. The menu should repeat and display as long as the userselects yes, the user should be able to select multiple food itemsfrom the menu. Suggested Food Menu: Pizza ………………….$3.00 Burger……………….$5.00 Sandwich…………...$3.00 Suggested Beverage Menu: SoftDrink ……………$2.00 Water…………………..$0.00 Suggested Dessert Menu:Cookie………………….$1.00 Cake……………………..$3.00 Ice cream…………….$2.00