Post

[BaekJoon] 2562번 - 최댓값 [Java][C++]

[BaekJoon] 2562번 - 최댓값 [Java][C++]

문제 링크


1. 문제 풀이


서로 다른 $9$ 개의 자연수에 대해 최댓값과 등장 위치를 구하는 문제로 반복문을 활용하면 간단하게 해결할 수 있다.


2. 코드


1. 풀이 [Java]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int max = 0;
        int idx = 0;
        for (int i = 1; i <= 9; i++) {
            int num = Integer.parseInt(br.readLine());

            if (num > max) {
                max = num;
                idx = i;
            }
        }

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


2. 풀이 [C++]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int mx = 0;
    int idx = 0;

    for (int i = 1; i <= 9; i++) {
        int num;
        cin >> num;

        if (num > mx) {
            mx = num;
            idx = i;
        }
    }

    cout << mx << '\n';
    cout << idx << '\n';
}

This post is licensed under CC BY 4.0 by the author.