Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a program to help a local restaurant automate its breakfast billing system. The program should do the following: Show the customer the different breakfast
Write a program to help a local restaurant automate its breakfast billing system. The program should do the following:
Show the customer the different breakfast items offered by the restaurant.
Allow the customer to select more than one item from the menu.
Calculate and print the bill.
Assume that the restaurant offers the following breakfast items the price of each item is shown to the right of the item:
food Price
Plain Egg $
Bacon and Egg $
Muffin $
French Toast $
Fruit Basket $
Cereal $
Coffee $
Tea $
Use an array menuList of type menuItemType, as defined in Programming Exercise 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 tax.
A sample output is:
Welcome to Johnny's Resturant
Today's Menu
: Plain Egg $
: Bacon and Egg $
: Muffin $
: French Toast $
: Fruit Basket $
: Cereal $
: Coffee $
: Tea $
You can make up to single order selections
Do you want to make selection Yy Yes Nn No: Y
Enter item number:
Select another item Yy Yes Nn No: Y
Enter item number:
Select another item Yy Yes Nn No: N
Welcome to Johnny's Resturant
Plain Egg $
Bacon and Egg $
Tax $
Amount Due $
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. Use C programming.
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