[백준/BOJ] 백준 10817번 : 세 수

2020. 9. 16. 00:38알고리즘 문제풀이

www.acmicpc.net/problem/10817

 

10817번: 세 수

첫째 줄에 세 정수 A, B, C가 공백으로 구분되어 주어진다. (1 ≤ A, B, C ≤ 100)

www.acmicpc.net

입력받은 수를 정렬하여 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;
}