1 #include<iostream>
 2 #include<string>
 3 #include<algorithm>
 4 using namespace std;
 5 
 6 int main(void)
 7 {
 8     string colorBrick;
 9     cin >> colorBrick;
10     
11     sort(colorBrick.begin(), colorBrick.end());
12 
13     cout<<colorBrick<<endl;
14     system("pause");
15     return 0;
16 }    

 

相关文章:

  • 2022-12-23
  • 2022-01-02
  • 2021-06-26
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
  • 2022-02-01
猜你喜欢
  • 2021-05-31
  • 2021-10-11
  • 2021-11-23
  • 2021-06-28
  • 2022-12-23
  • 2022-12-23
  • 2021-09-14
相关资源
相似解决方案