CJCoding With Joseph

Swappable Behavior With an Interface

The interface IDiscount declares int Apply(int price). Complete NoDiscount (returns the price unchanged) and HalfOffDiscount (returns half the price). The Checkout.Total method delegates to whichever discount it is given. Do NOT write a Main method.

For price 100 with a half-off discount, then with no discount, the program prints:
50
100

Expected Output:

50
100
Topics:
Interfaces
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.