프로그래밍 언어/JAVA(자바)

[자바/java] Arrays.fill()을 이용한 int[] 배열 , 이차원 배열 값 채우기

냠냠:) 2020. 8. 30. 00:54

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 +" ");
        }
 
    }
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 < b.length; i++) {
            Arrays.fill(b[i], 100);
        }
        
        //출력
        for(int[] i : b) {
            for(int j : i) {
                System.out.print(j +" ");
            }
            System.out.println();
        }
 
    }
cs

 

모르셨던 분들에게 도움이 됐으면 합니다.

반응형