(예제1) String[]str= {"apple","banana","strawberry","kiwi"}; System.out.println("***차례대로 출력***"); for(int i=0;i=0;i--) { try { System.out.println(str[i]); }catch (ArrayIndexOutOfBoundsException e) { System.out.println("거꾸로 출력 중에 오류:"+e.getMessage()); } } //결과 ***차례대로 출력*** apple banana strawberry kiwi 배열요구: Index 4 out of bounds for length 4 ***거꾸로 출력*** 거꾸로 출력 중에 오류:Index 4 out of bounds for leng..