본문 바로가기
백준

[1427] 소트인사이드

by Jcoder 2018. 7. 14.


#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
bool cmp(char &a, char &b)
{
return a > b;
}

int main()
{
char c[10];
cin >> c;
sort(c, c+ strlen(c), cmp);
cout << c;
return 0;
}


'백준' 카테고리의 다른 글

[1978] 소수 찾기  (0) 2018.07.17
[1181] 단어 정렬  (0) 2018.07.14
[2108] 통계학  (0) 2018.07.14
[2750] 수 정렬하기1, 2  (0) 2018.07.14
[2775] 부녀회장이 될테야  (0) 2018.07.14