먼저 아래와 같이 Customer 라는 고객 정보를 담는 클래스가 있다. public class Customer { private int customerID; // 고객아이디 private String customerName; // 고객 이름 private String customerGrade; // 고객 등급 int bonusPoint; // 포인트 합계 double bonusRatio; // 포인트 적립률 public Customer() { customerGrade = "SILVER"; // 고객 등급을 SILVER로 지정 bonusRatio = 0.01; // 포인트 적립률을 1%로 지정 } public int calcPrice(int price) { // 보너스 포인트 계산 메서드 bonusPoi..