본문 바로가기
알고리즘 문제풀이/백준

[알고리즘/백준] 2562 최댓값(자바)

by jeonghaemin 2021. 9. 18.
728x90

문제

https://www.acmicpc.net/problem/2562

풀이 코드

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int max = Integer.MIN_VALUE; //최대값
        int idx = Integer.MIN_VALUE; //최대값 위치

        for (int i = 0; i < 9; i++) {
            int n = Integer.parseInt(br.readLine());
            if (n > max) {
                idx = i;
                max = n;
            }
        }

        System.out.println(max);
        System.out.println(idx+1);
    }
}

댓글