문제 링크
https://swexpertacademy.com/main/code/problem/problemDetail.do
C++ 풀이
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
vector <int> num;
int T, N;
cin >> T;
for (int i = 1; i <= T; ++i) {
cin >> N;
num.clear();
num.resize(N);
for (int j = 0; j < N; ++j)
cin >> num[j];
sort(num.begin(), num.end());
cout << "#" << i;
for (int j = 0; j < N; ++j)
cout << " " << num[j];
cout << "\n";
}
return 0;
}
반응형
'알고리즘 · 코딩' 카테고리의 다른 글
[SWEA 1285] 아름이의 돌 던지기 (0) | 2021.09.27 |
---|---|
[백준 5052번] 전화번호 목록 (0) | 2021.09.19 |
[SWEA 1946] 간단한 압축 풀기 (0) | 2021.09.11 |
[프로그래머스] 부족한 금액 계산하기 (0) | 2021.09.08 |
[프로그래머스] 표 편집 (0) | 2021.08.25 |