[백준] #10951 최댓값

kkily·2021년 7월 1일
0

[알고리즘]

목록 보기
25/102

문제링크

#include <iostream>

using namespace std;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    int arr[10];
    int max = 0;
    int maxNum = 0;

    for (int i = 0; i < 9; i++)
    {
        cin >> arr[i];
        if (max <= arr[i])
        {
            max = arr[i];
            maxNum = i;
        }
    }
    cout << max << endl;
    cout << maxNum + 1;
}
profile
낄리의 개발 블로그╰(*°▽°*)╯

0개의 댓글

관련 채용 정보