2021/01/20 - [공부/자바(java) 융합개발자 2차] - [자바 6일차] 25일차 - 다차원 배열, 상속(Do it 공부단 p.219~) 지난 시간 과제 p.234~253 Customer.java package com.day06; public class Customer { private int customerID; private String customerName; private String customerGrade; int bonusPoint; double bonusRate; public Customer() { customerGrade = "SILVER"; bonusRate = 0.01; } public int calPrice(int price) { bonusPoint += price * b..