public class test { public static void main(String[] args) { String[] names = { "홍길동", "홍길동", "홍길동", "홍길동", "홍길동", "홍길동" }; String[] subjects = { "국어", "영어", "수학", "사회", "과학", "Oracle", "Java" }; int[][] score = new int[names.length][subjects.length]; for (int i = 0; i < names.length; i++) { for (int j = 0; j < subjects.length; j++) { score[i][j] = (int) (Math.random() * 101); } } int[] nameSum ..