본문 바로가기
Study (etc)/Problem Solving

[BOJ / C++] 2750번 : 수 정렬하기

by Haren 2022. 3. 28.

문제

N개의 수가 주어졌을 때, 이를 오름차순으로 정렬하는 프로그램을 작성하시오.

입력

첫째 줄에 수의 개수 N(1 ≤ N ≤ 1,000)이 주어진다. 둘째 줄부터 N개의 줄에는 수 주어진다. 이 수는 절댓값이 1,000보다 작거나 같은 정수이다. 수는 중복되지 않는다.

출력

첫째 줄부터 N개의 줄에 오름차순으로 정렬한 결과를 한 줄에 하나씩 출력한다.

Solved.ac 레벨

브론즈 I

풀이

#include <bits/stdc++.h>

using namespace std;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(NULL);
    cout.tie(NULL);

    vector<int> numArray;
    int testCase;
    cin >> testCase;

    for(int i = 0; i < testCase; i++){
        int inputNum = 0;
        cin >> inputNum;
        numArray.push_back(inputNum);
    }

    sort(numArray.begin(), numArray.end());

    for(int i = 0; i< testCase; i++){
        cout << numArray[i] << endl;
    }
    return 0;
}

https://acmicpc.net/problem/2750