요구사항코드public static void main(String[] args) { Scanner sc = new Scanner(System.in); String collectionName = sc.nextLine(); String title = sc.nextLine(); switch (collectionName){ case "list": ArrayList strList = new ArrayList(); while(true){ String text = sc.nextLine(); if(text.equals("끝")){..