题解 1742: 字符串内排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

字符串内排序

摘要:while True:     try:         n=input()         print("".join(sorted(n)))     except:     &nb

字符串内排序 (C++代码)

摘要:解题思路:由于字符串中可能包含空格,所以用cin对象的getline函数输入即可,然后用sort排序,再输出。注意事项:参考代码:#include <bits/stdc++.h> using nam……