Answered step by step
Verified Expert Solution
Question
1 Approved Answer
PyCharm Program 04 You are programming at Mile High Comics. Chuck, the owner, is having a special promotion next month based on the number of
PyCharm
Program 04 You are programming at Mile High Comics. Chuck, the owner, is having a special promotion next month based on the number of purchased items in the shopping cart. Chuck has defined the following discount schedule: 1-9 items: No Discount 10-25 items: 5% discount 25-39 items: 10% discount 40 items or more: 15% discount Shopping carts over $200 will get a 20% discount regardless of the number items Your program should do the following: Prompt the user for the cart total - assume good data Prompt the user for the number of items in the cart - assume good data. Your program should produce the following output for a single run: Run 1 What is the cart total: 25.70 What is the number of items in the cart: 8 Your cart total is $25.70, with a total of 8 items. You are not eligible for a discount. Run 2 What is the cart total: 30.00 What is the number of items in the cart: 12 Your cart total is $30.00, with a total of 12 items. You are eligible for a discount of 5% based on the number of items purchased -- precisely a $1.50 value. Your new total is $28.00 Assumptions You are allowed to use a single IF statement. All paths of the IF statement should be reachable with good data. You can only use coding constructs that have been coveredStep 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