08 다음 JAVA로 구현된 프로그램을 분석하여 괄호(①, ②)에 들어갈 알맞은 답을 쓰시오.public class Test { public static void main(String[] args) { int ary[][] = new int[( ① )( ② )]; int n=1; for(int i=0; i 답더보기① 3② 5 해설코드실행순서 및 해석1public class Test { 2 public static void main(String[] args) { 3 int ary[][] = new int[( ① )( ② )]; 배열의 생성4 int n=1; 5 for(int i=..