출근 길 커피 사기 아침 출근 길에 A씨는 4000원을 내고 별 다방에서 아메리카노를 사마셨다. B씨는 콩 다방에서 4500원을 내고 라떼를 사 마셨다. 객체 지향 방법으로 구현해보자. // StarCoffee.java package cooperation; public class StarCoffee { // 1 public int price; public int income; // 2 public StarCoffee() {} // 3 public String sellStarCoffee(int price) { income += (price); if (price == 4000) { return "별 다방 아메리카노를 구입했습니다."; } else if (price == 4300) { return "별 다방 ..