DESCRIPTION
Requirements
Write a program that allows the user to order food from a preset menu
Program prints out each item individually as well as the total cost
STEP BY STEP
Determine at least three items your restaurant would like to sell
Write the program with only a single item on your menu.
Repeat the process so it works with multiple menu items
Make sure this works for each different item, and be sure that your math is correct when you run the program multiple times.
EXAMPLE: RUNNING PROGRAM
Burger $7
Taco $4
Pizza $13
How many burgers would you like?
3
How many tacos would you like?
2
How many pizzas would you like?
1
Here is your food:
Burger
Burger
Burger
Taco
Taco
Pizza
That will be $42