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

10905Children‘s game

时间:2017-03-10 20:47:27      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:scanf   str   ios   cin   int   stream   out   iostream   string   

#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
int cmp(string a,string b){
return a+b>b+a;
}
int main(){
int n;
while(scanf("%d",&n)==1 && n){
string buf[n];
int i,j;
for(i=0;i<n;i++){
cin>>buf[i];
}

sort(buf,buf+n,cmp);

for(i=0;i<n;i++) {
cout<<buf[i];
}

}
}

10905Children‘s game

标签:scanf   str   ios   cin   int   stream   out   iostream   string   

原文地址:http://www.cnblogs.com/whitehouse2016/p/6532736.html

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