九度题目1054

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
int main(){
    char buf[201];
    int len;
while(scanf("%s",&buf)!=EOF){

        len=strlen(buf);
sort(buf,buf+len);
   printf("%s\n",buf); 
}
return 0;

}

注意:

strlen函数的使用;

sort对字符的排序

你可能感兴趣的:(c)