Derive a class BulkDiscount from DiscountPolicy, as described in the previous exercise. It should have a constructor

Question:

Derive a class BulkDiscount from DiscountPolicy, as described in the previous exercise. It should have a constructor that has two parameters, minimum and percent. It should define the method computeDiscount so that if the quantity purchased of an item is more than minimum, the discount is percent percent.


Previous exercise.

Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost.

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: