
Write a C++
Pizza types are given below:
1-Vegetarian Pizza
Pizza Preparation Time = 15 Minutes
Calories = 25
Pizza Price Large = 4 OMR, Medium = 3 OMR, Small = 2 OMR
Toppings:
Onion, Green paper, Olives, Sweet Corn and Mushrooms
2-Chicken Dynamite Pizza
Pizza Preparation Time = 20 Minutes
Calories = 150
Pizza Price Large = 7 OMR, Medium = 5 OMR, Small = 3 OMR
Toppings:
Grilled Chicken, Cheese, Ranch Sauce, Jalapenos
3-Meat Lovers Pizza
Pizza Preparation Time = 20 Minutes
Calories = 250
Pizza Price Large = 8 OMR, Medium = 6 OMR, Small = 4 OMR
Toppings:
Minced Meat, Cheese, BBQ Sauce, Fresh Tomato
Sample Output:
Welcome to Freddy’s Pizza
Pizza Menu:
1-Vegetarian Pizza
2-Chicken Dynamite Pizza
3-Meat Lovers Pizza
Which Pizza would you like to try? Chicken Dynamite
What size of pizza would you like (L, M,S)? L
Pizza Order:
Pizza Name: Meat Lovers Pizza
Preparation Time: 20 Minutes
Calories: 250
Pizza Price: 8 OMR
Toppings: Minced Meat, Cheese, BBQ Sauce, Fresh Tomato

Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 5 images

- using Visual Basic or VB.netarrow_forwardObjective: Must create an interactive program (in C language) in which the computer generates a random number between 1 and 15. The user is presented with a guessing game and must enter their guess as to which number the computer is "thinking of" (the randomly generated number between 1 and 15). The user is limited to five guesses. If the user guesses the correct number within the five guess limit, they win. If the user does not guess correctly within the five guess limit, they lose the game. Following each user input, the output must say "your guess of _ was too low. try again" or "your guess of _ was too high. try again" or "you guessed it!" Instructions: The program must make use of passing by value and reference, if-else, defined constants, and use of the random number generator/seeding. The seed function srand() should only be called once in main. The point is to demonstrate use of multiple functions (those aforementioned) even though this could be accomplished with a much…arrow_forward// A standard mortgage is paid monthly over 30 years. // This program is intended to display 360 payment coupons // for a new borrower. Each coupon lists the month number, // year number, and a friendly mailing reminder. start num MONTHS = 12 num YEARS = 30 string MSG = "Remember to allow 5 days for mailing" num monthCounter = 0 num yearCounter = 30 while yearCounter <= YEARS while monthCounter <= MONTHS output monthCounter, yearCounter, MSG endwhile endwhile stop housekeeping() print "Enter account number or ", QUIT, " to quit " return printCoupons() while yearCounter <= YEARS while monthCounter <= MONTHS print acctNum, monthCounter, yearCounter, MSG monthCounter = monthCounter + 1 endwhile yearCounter = yearCounter + 1 endwhile output "Enter account number or ", QUIT, " to quit " input acctNum return finish() output "End of job" returnarrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





