로그: 사용자가 새로 입장합니다. === 자 판 기 === 1. 음료추가 2. 음료목록출력 3. 음료구매 4. 음료제거 5. 음료추가 6. 음료검색 7. 프로그램 종료 입력) View package view; import java.util.ArrayList; import java.util.Scanner; import model.DrinkVO; public class DrinkView { private static Scanner sc=new Scanner(System.in); public int tryCatch() { while(true) { try { System.out.print("입력) "); int action=sc.nextInt(); return action; } catch(Exception e)..