Answered step by step
Verified Expert Solution
Question
1 Approved Answer
THE CODE SHOULD BE IN C++. Lab Task 23.2. (For SUBMISSION) Define a struct, menultem Type, with two components: menultem of type string and menuPrice
THE CODE SHOULD BE IN C++.
Lab Task 23.2. (For SUBMISSION) Define a struct, menultem Type, with two components: menultem of type string and menuPrice of type double. Write a program to help a local restaurant automate its breakfast billing system. The program should do the following: a. Show the customer the different breakfast items offered by the restaurant. b. Allow the customer select more than one item from the menu. Calculate and print the bill. C. Assume that the restaurant offers the following breakfast items (the price of each item is shown to the right of the item): Plain Egg Bacon and Egg Muffin French Toast Fruit Basket Cereal Coffee Tea $1.45 $2.45 $0.99 $1.99 $2.49 $0.69 $0.50 $0.75 Use an array, menulist, of the struct menultem Type. Your program must contain at least the following functions: Function getData: This function loads the data into the array menulist. Function showMenu: This function shows the different items offered by the restaurant and tells the user how to select the items. Function printCheck: This function calculates and prints the check. (Note that the billing amount should include a 5% tax.) A sample output is: Welcome to Johnny's Restaurant Bacon and Egg $2.45 Muffin $0.99 Coffee $0.50 Tax $0.20 Amount Due $4.14 You may assume that the user selects only one item of a particular typeStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started