Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes and returns the total cost for the purchase according to the following rules: # of Monitors Cost in $ 1-99 100-199 200+ Examples: monitor_cost per monitor monitor_cost for each of the first 100 monitors and 20% discount on the rest 20% discount on the first 200 monitors and 35% discount on the rest Function Call bulk_purchase(80, 75) bulk_purchase(175, 120) bulk_purchase (228, 180) $32076.00 Expected Output $6000.00 $19200.00

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter6: User-defined Functions
Section: Chapter Questions
Problem 19PE
icon
Related questions
Question
Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of
monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer
monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes
and returns the total cost for the purchase according to the following rules:
# of Monitors Cost in $
1-99
100-199
200+
Examples:
monitor_cost per monitor
monitor_cost for each of the first 100 monitors and 20% discount on the rest
20% discount on the first 200 monitors and 35% discount on the rest
Function Call
Expected Output
bulk_purchase(80, 75)
$6000.00
bulk_purchase(175, 120)
$19200.00
bulk_purchase (228, 180) $32076.00
[ ]
1 def bulk_purchase (monitors_to_buy, monitor_cost):
2
3
return 0 # DELETE THIS LINE and start coding here.
# Remember: end all of your functions with a return statement, not a print statement!
4
5 # Test cases
6 print (f'${bulk_purchase(80, 75):.2f}')
7 print (f'${bulk_purchase(175, 120):.2f}')
8 print (f'${bulk_purchase (228, 180):.2f}')
Transcribed Image Text:Customers can buy computer screens in bulk from Computer Monitor Paradise, Inc. Customers receive discounts based on the number of monitors they buy. Complete the function bulk_purchase, which takes two arguments: monitors_to_buy, which is the number of computer monitors a customer wants to purchase; and monitor_cost, which is the non-discounted cost to buy a single monitor. The function computes and returns the total cost for the purchase according to the following rules: # of Monitors Cost in $ 1-99 100-199 200+ Examples: monitor_cost per monitor monitor_cost for each of the first 100 monitors and 20% discount on the rest 20% discount on the first 200 monitors and 35% discount on the rest Function Call Expected Output bulk_purchase(80, 75) $6000.00 bulk_purchase(175, 120) $19200.00 bulk_purchase (228, 180) $32076.00 [ ] 1 def bulk_purchase (monitors_to_buy, monitor_cost): 2 3 return 0 # DELETE THIS LINE and start coding here. # Remember: end all of your functions with a return statement, not a print statement! 4 5 # Test cases 6 print (f'${bulk_purchase(80, 75):.2f}') 7 print (f'${bulk_purchase(175, 120):.2f}') 8 print (f'${bulk_purchase (228, 180):.2f}')
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Concept of Parenthesis
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning