Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In PyCharm Program 04 You are programming at Mile High Comics. Chuck, the owner, is having a special promotion next month based on the number

In PyCharm

image text in transcribed

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 covered

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

3. Existing organizations and programs constrain behavior.

Answered: 1 week ago