解题思路:
无
注意事项:
无
参考代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int i,j,a[10000]={};
string s;
while(getline(cin,s))
{
for(i=0;i<s.length();i++)
{
a[i]=s[i];
}
sort(a,a+s.length());
for(i=0;i<s.length();i++)
{
cout<<(char)a[i];
}
cout<<endl;
}
return 0;
}
0.0分
2 人评分