[백준/BOJ] 백준 2562번 : 최댓값
2020. 8. 2. 03:31ㆍ알고리즘 문제풀이
https://www.acmicpc.net/problem/2562
수를 입력받을 때마다 지금까지 최댓값과 비교해 최댓값에 대한 정보를 업데이트한다.
코드
#include <iostream>
using namespace std;
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int temp;
int max_input = -1; //최댓값을 -1로 초기화 한다
int max_point = -1; //최댓값이 몇번째 수인지를 -1로 초기화 한다
for (int i = 1; i <= 9; i++)
{
cin >> temp;
//입력받은 수가 최댓값 보다 크다면
if (max_input < temp)
{
//최댓값에 대한 정보를 업데이트한다
max_input = temp;
max_point = i;
}
}
cout << max_input << "\n";
cout << max_point << "\n";
return 0;
}
'알고리즘 문제풀이' 카테고리의 다른 글
[백준/BOJ] 백준 2587번 : 대표값2 (0) | 2020.08.02 |
---|---|
[백준/BOJ] 백준 2576번 : 홀수 (0) | 2020.08.02 |
[백준/BOJ] 백준 2490번 : 윷놀이 (0) | 2020.08.02 |
[백준/BOJ] 백준 2480번 : 주사위 세개 (0) | 2020.08.02 |
[백준/BOJ] 백준 1912번 : 연속합 (0) | 2020.08.02 |