RuslanMag

Сортировка

Nov 9th, 2019
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. /*
  2.     Сортировка
  3. */
  4.  
  5. #include <iostream>
  6. #include <algorithm>
  7. using namespace std;
  8.  
  9. int main()
  10. {
  11.     const int N = 100000;
  12.     char S[N];
  13.     cin.getline(S, N);
  14.    
  15.     sort (S, S + strlen(S));
  16.  
  17.     cout << S;
  18. }
Add Comment
Please, Sign In to add comment