일반 고객과 VIP 고객 중간 멤버쉽 만들기 고객이 늘어 일반 고객보다는 많이 구매하고 VIP보다는 적게 구매하는 고객에게도 혜택을 주는 경우 GOLD 고객 등급을 만들고 혜택은 다음과 같습니다. 1. 제품을 살때는 10%를 할인해줍니다. 2. 보너스 포인트는 2%를 적립해줍니다. GoldCustomer.java public class GoldCustomer extends Customer { double salesRatio; public GoldCustomer(int customerID, String customerName) { super(customerID, customerName); salesRatio = 0.1; bonusRatio = 0.02; customerGrade = "Gold"; } @Ov..