首页 > 代码库 > oj---九度oj---1054

oj---九度oj---1054

 

 

#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
char str[205];
bool cmp(char a,char b){
    return a<b; 
}


int main(){
    while(gets(str)){
        sort(str,str+strlen(str),cmp);
        puts(str);
    }
    return 0;
}

 

oj---九度oj---1054