Question
This week you will finish your Italian Restaurant Ordering Program. You will expand on your project by adding an enumeration type for Pizza Toppings, Wing
This week you will finish your Italian Restaurant Ordering Program. You will expand on your project by adding an enumeration type for Pizza Toppings, Wing Sauces, and sandwich types (Roast Beef, Chicken Club, etc.). Be creative add some standards and invent some of your own. Enhance your wings and sandwiches to include the sauce type and sandwich type when ordering. The toString method for these classes should also be updated. Add to your Pizza a Set of pizza toppings (which will contain a collection of unique entries no duplicates allowed). Create a method that will allow toppings to be added to a pizza. Enhance the toString method to include the pizza toppings and your price structure to add $.50 per topping to the price. Enforce a limit of seven toppings per pizza. Overload the stream insertion operator << for the menuItems (should essentially invoke the toString methods previously created). Overload the += operators for Pizzas (allowing toppings to be added). Identify several specialty pizzas (4-5) and create a set of toppings for each specialty. Allow the user to order specialty pizzas based on the identifier (i.e. Meat, Veggie, etc.). When ordering a specialty pizza, the appropriate set of topping would be loaded into the pizza. Create a menu driven program that will allow the user to add menu items (pizza, sandwiches, wings, and breads) to an order (use only one data structure to hold your order items). Customers would be allowed to add individual toppings to a pizza (limit 7). The customer should be prompted as to whether they want to add additional items to their order (i.e. add another item? y/n). Upon completing their order, the system should list out the items they ordered with the total price, calculated the tax (7%), and suggested tip. in c++ please
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