Dev.baelanche

[백준 2562] 최댓값 본문

Data Structure & Algorithm/PS - JAVA

[백준 2562] 최댓값

baelanche 2019. 6. 25. 23:02
반응형

 

배열 단계에 있는 문제였는데 배열을 굳이 사용할 필요가 없다.

 

public class Main {
    
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int max = 0;
        int maxIdx = 0;
        for(int i=1; i<=9; i++) {
            int n = sc.nextInt();
            max = Math.max(max, n);
            maxIdx = max == n ? i : maxIdx;
        }
        System.out.println(max);
        System.out.println(maxIdx);
    }
}
반응형

'Data Structure & Algorithm > PS - JAVA' 카테고리의 다른 글

[백준 11729] 하노이 탑 이동 순서  (0) 2019.06.25
[백준 10870] 피보나치 수 5  (0) 2019.06.25
[백준 2753] 윤년  (0) 2019.06.25
[백준 2588] 곱셈  (0) 2019.06.25
[백준 10171] 고양이  (0) 2019.06.25
Comments