반응형

[Java #21] 배열의 최대값

 

1. 배열의 최대값

2. 개발환경

    2.1. 개발환경

    2.2. 라이브러리

3. 구현 - 소스코드

4. 결과

 

 

1. 배열의 최대값

숫자 배열의 최대값 출력

 

 

2. 개발환경

 

2.1. 개발환경

MacOS M1 - macOS Monterey 12.0.1

IntelliJ IDEA 2021.2 (Community Edition)

 

2.2. 라이브러리

JDK 1.8

 

 

3. 구현 - 소스코드

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.util.Arrays;
 
public class TestMaxValue {
 
    static int[] integers = { 1137592132317293731 };
 
    public static void main(String[] args) {
        int max = getMaxValue(integers);
        System.out.println(Arrays.toString(integers));
        System.out.println("max: " + max);
    }
 
    private static int getMaxValue(int[] integers) {
        int max = integers[0];
        for (int i = 1; i < integers.length; i++) {
            if (integers[i] > max) max = integers[i];
        }
        return max;
    }
 
}

 

 

4. 결과

 

 

반응형