The Downtown Marketing Association wants to promote downtown shopping with a loyalty program similar to the one
Question:
The Downtown Marketing Association wants to promote downtown shopping with a loyalty program similar to the one in Exercise P8.17. Shops are identified by a number between 1 and 20. Add a new parameter variable to the make Purchase method that indicates the shop. The discount is awarded if a customer makes purchases in at least three different shops, spending a total of $100 or more.
Data from Exercise P8.17.
Design a Customer class to handle a customer loyalty marketing campaign. After accumulating $100 in purchases, the customer receives a $10 discount on the next purchase. Provide methods
• void makePurchase(double amount)
• boolean discountReached()
Provide a test program and test a scenario in which a customer has earned a discount and then made over $90, but less than $100 in purchases. This should not result in a second discount. Then add another purchase that results in the second discount.
Step by Step Answer: