题目描述

Lily上课时使用字母数字图片教小朋友们学习英语单词,每次都需要把这些图片按照大小(ASCII码值从小到大)排列收好。请大家给Lily帮忙,通过C语言解决。
本题含有多组样例输入。

//ASCII的顺序 数字<大写字母<小写字母
#include<iostream>
#include<algorithm>
using namespace std;
int main(){
    string str;
    while(cin>>str){
        sort(str.begin(),str.end());
        cout<<str<<endl;
    }
    return 0;
}

sort是现成的函数
如果不用就自己写个排序吧