반응형

[쉽게 배우는 자바 프로그래밍] 

Chapter 05. 문자열, 배열, 디버깅

프로그래밍 문제 


7. 2개의 1차원 배열에서 내용이 같은지를 조사하는 메서드를 정의하고, 다음 배열을 사용해 테스트


1
2
3
4
5
6
7
8
9
10
11
public static void main(String[] args) {
    int[] a = { 32415 };
    int[] b = { 3241 };
    int[] c = { 32415 };
    int[] d = { 27182 };
        
    System.out.println(Arrays.equals(a, b));
    System.out.println(Arrays.equals(a, c));
    System.out.println(Arrays.equals(b, b));
    System.out.println(Arrays.equals(c, d));
}

cs


반응형