码迷,mamicode.com
首页 > 其他好文 > 详细

oj---九度oj---1054

时间:2017-06-21 22:59:01      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:cst   algorithm   std   main   string   using   style   ret   div   

 

 

#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

标签:cst   algorithm   std   main   string   using   style   ret   div   

原文地址:http://www.cnblogs.com/kprac/p/7061796.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!