📅  最后修改于: 2022-03-11 14:44:52.758000             🧑  作者: Mango
#include
using namespace std;
int main()
{
srting str; // First, declare a string.
sort(str.begin() , str.end()); // Then sort it by using this method. It is much more convenient.
cout << str << endl; // Last of all, print out the string.
}