Question: C + + code using namespace std; #include fstream > #include iostream > #include iomanip > #include cstring > no vectors!! We didn't cover that
C code
using namespace std;
#include fstream
#include iostream
#include iomanip
#include cstring
no vectors!! We didn't cover that in class
I must import the data from a text file which I have named "MenuData.txt
Please don't include nonstatic data member initializers. Im using DevC which doesn't support that!
I saved a notepad file with the menu items and prices in the same folder as my code for this assignment, but Im having trouble with using the file in my code. My output prices in the receipt are showing zero!!
Please include how to input a file in solution!
This is the question:
Make 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 $
food Price:
Cereal $
Coffee $
Tea $
Use an array menuList of type menuItemType, as defined above Your program must contain at least the following functions:
Function getData: This function loads the data from a file 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.
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.
A sample output is in the picture attached:
A sample output is:
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 Restaurant
Plain Egg $
Bacon and Egg $
Tax $
Amount Due $
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
