Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Exercises iii Exercise 8: Wings Read the problem listed below. Formulate a Decomposition or Outline of the problem. Determine if you have seen this problem
Exercises iii Exercise 8: Wings Read the problem listed below. Formulate a Decomposition or Outline of the problem. Determine if you have seen this problem before and how it was solved. Start to write your Algorithm, making note of the inputs and outputs that will be required. Write your code, test and debug. Create a program that will ask the user for number of chicken wings or wings they want to order at a restaurant. The number of wings and the sauce will determine if there is a discount on the total wings purchased. For hot wings purchased in a quantity of 6 or less there is no discount. Therefore the discount rate is 0.0. For hot wings and a quantity of more than 6 but less than or equal to 12, there is a 10% discount. For hot wings purchased in the amount of greater than 12 but less than 24 the discount is 20%. For sweet and sour wings, purchased with a quantity of 6 or less the discount is 5%. For sweet and sour wings and a quantity of greater than 6 but less than or equal to 12, the discount is 10%. For sweet and sour wings purchased with a quantity greater than 12 but less than or equal to 24, the discount is 15%. For all wing purchases greater than 24 wings, the discount is 25%. All wings are 50 cents each. The program needs to ask the user for the type of wing either hot or sweet with the following prompt. There are no spaces after the word Type: Type: The program also needs to ask for the quantity of wings using the following prompt. There are no spaces after the word Quantity: Quantity: Quantity: The program needs to determine the total cost of the wings and print that out with the following prompt. There are no spaces after the word Total: Total: Finally the program needs to ask the user if they want to purchase another order of wings using the following prompt. There are no spaces after the word Continue: The program will stop when the user enters Q to quit. Continue: Given that the user enters sour and 20, hot and 3 and also Q to end the program, your screen should print: Type:sour Quantity:20 Total: 8.5 Continue:Y Type:hot Quantity:3 Total: 1.5 Continue
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