[백준/BOJ] 백준 2751번 : 수 정렬하기 2
2020. 9. 16. 00:58ㆍ알고리즘 문제풀이
입력받은 수들을 sort()를 이용해 오름차순으로 정렬한다.
코드
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
int main()
{
cin.tie(NULL);
ios_base::sync_with_stdio(false);
int n;
int input;
vector<int> input_list;
cin >> n;
for (int i = 0; i < n; i++)
{
cin >> input;
input_list.push_back(input);
}
//오름차순으로 정렬한다
sort(input_list.begin(), input_list.end());
for (int i = 0; i < n; i++)
{
cout << input_list[i] << "\n";
}
return 0;
}
'알고리즘 문제풀이' 카테고리의 다른 글
[백준/BOJ] 백준 2609번 : 최대공약수와 최소공배수 (0) | 2020.09.16 |
---|---|
[백준/BOJ] 백준 1026번 : 보물 (0) | 2020.09.16 |
[백준/BOJ] 백준 10817번 : 세 수 (0) | 2020.09.16 |
[백준/BOJ] 백준 3986번 : 좋은 단어 (0) | 2020.09.15 |
[백준/BOJ] 백준 2908번 : 상수 (0) | 2020.09.15 |