Hueestory

[1427] 소트인사이드 (C++) 본문

PS(중단)/BOJ

[1427] 소트인사이드 (C++)

히명 2024. 4. 24. 07:39
#include <iostream>
#include <string>
#include <algorithm>

using namespace std;

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

	string num; cin >> num;

	sort(num.begin(), num.end(), greater<char>());
	cout << num << endl;

	return 0;
}

 

1. string으로 숫자를 문자열 형식으로 받아옴

2. sort 사용해 정렬 후 출력

 

'PS(중단) > BOJ' 카테고리의 다른 글

[1157] 단어 공부 (C++)  (0) 2024.04.24
[11399] ATM (C++)  (0) 2024.04.24
[1377] 버블 소트 (C++)  (0) 2024.04.23
[2750] 수 정렬하기 (C++)  (0) 2024.04.23
[11286] 절댓값 힙 (C++)  (0) 2024.04.22
Comments