โ Back to If Statements
Question 315
Discount Tiers
Discount Tiers
Read an order total (whole dollars) from input and apply a discount: under 100 gets no discount, 100 to 199 subtracts 10, and 200 or more subtracts 25. Print the final amount to pay. For example, for input 150, print:
140Expected Output:
140
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.