1. int[] 배열 채우기 1 2 3 4 5 6 7 8 9 public static void main(String[] args) { int[] a = new int[5]; Arrays.fill(a, 100); for(int i : a) { System.out.print(i +" "); } } Colored by Color Scripter cs 2. int[][] 이차원 배열 채우기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 public static void main(String[] args) { int[][] b = new int[5][5]; for(int i = 0; i