728x90 자바 배열 응용1 [JAVA] ch06-08. 배열 (Array) 8 public class Ex08 { //다차원 배열 아파트를 연상하라.성적표 public static void main(String[] args){ int[][] score = { // 2차원 배열 {100, 100, 100}, {100, 20, 20}, {30, 30, 30}, {40, 40, 40}, {50, 50, 50}, }; int korTot=0, engTot=0, mathTot=0; System.out.println("num kor eng math total avg"); System.out.println("=========================="); for(int i=0; i JAVA/예제 2017. 8. 22. 이전 1 다음 728x90