import java.io.*;//to use InputStreamReader and BufferedReaderimport java.util.*;//to use ArrayListpublic class Assignment5 extends SummerCamp{public Assignment5 (String a, String b, double c, int d){super(a,b,c,d);}public static void main (String[] args){char input1;String inputInfo = new String();String line = new String();boolean operation;// ArrayList object is used to store SummerCamp objectsArrayList summerCampList = new ArrayList();try{printMenu();// print out menu// create a BufferedReader object to read input from a keyboardInputStreamReader isr = new InputStreamReader (System.in);BufferedReader stdin = new BufferedReader (isr);do{System.out.println("What action would you like to perform?");line = stdin.readLine().trim();input1 = line.charAt(0);input1 = Character.toUpperCase(input1);if (line.length() == 1){switch (input1){case 'A'://Add SummerCampSystem.out.print("Please enter some summer camp informationto add:\n");inputInfo = stdin.readLine().trim();summerCampList.add(SummerCampParserClass.parseStringToSummerCamp(inputInfo));break;case 'C':
Want to read all 3 pages?
Previewing 2 of 3 pages Upload your study docs or become a member.
Want to read all 3 pages?
Previewing 2 of 3 pages Upload your study docs or become a member.
End of preview
Want to read all 3 pages? Upload your study docs or become a member.