Question
i have a problem on solving the question as i dont get what does the question asking for. please help me solve and give some
i have a problem on solving the question as i dont get what does the question asking for. please help me solve and give some explaination so that i can understand. thank you
//first question
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 to select more than one item from the menu
(c) Calculate the bill
Assume that the restaurant offers the following breakfast items (the price of each item is shown to
the right of the item):
Plain Egg $1.45
Bacon and Egg $2.45
Muffin $0.99
French Toast $1.99
Fruit Basket $2.49
Cereal $0.69
Coffee $0.50
Tea $0.75
Use an array, menuList, of the struct menuItemType, with two components: menuItem of type
string, and menuPrice of type double
Your program must contain at least the following functions:
Function getData: This function loads the data into array menuList
Function showMenu: This function show the different items offered by the restaurant and tell user how to select the item
Function printCheck: This function calculates and print the check (Note that the billing amount should include 5% tax)
A sample output is:
Welcome to Daily's Restaurant
Bacon and Egg $2.45
Muffin $0.99
Coffee $0.50
Tax $0.20
Amount Due $4.14
Format your output with two decimal places. The name of each item in the output must be left-justified.
You may assume that the user selects only one item of a particular type.
//second question refer to above
Redo the above question so that the customer can select multiple items of a particular type. A sample output
in this case is:
Welcome to Daily's Restaurant
1 Bacon and Egg $2.45
2 Muffin $1.98
1 Coffee $0.50
Tax $0.25
Amount Due $5.18
Step 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