[백준/BOJ] 백준 10817번 : 세 수
2020. 9. 16. 00:38ㆍ알고리즘 문제풀이
입력받은 수를 정렬하여 2번째 수를 출력한다.
코드
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int a, b, c;
vector<int> input;
cin >> a >> b >> c;
input.push_back(a);
input.push_back(b);
input.push_back(c);
//오름차순으로 정렬한다
sort(input.begin(), input.end());
//2번째수를 출력
cout << input[1];
return 0;
}
'알고리즘 문제풀이' 카테고리의 다른 글
[백준/BOJ] 백준 1026번 : 보물 (0) | 2020.09.16 |
---|---|
[백준/BOJ] 백준 2751번 : 수 정렬하기 2 (0) | 2020.09.16 |
[백준/BOJ] 백준 3986번 : 좋은 단어 (0) | 2020.09.15 |
[백준/BOJ] 백준 2908번 : 상수 (0) | 2020.09.15 |
[백준/BOJ] 백준 2675번 : 문자열 반복 (0) | 2020.09.15 |