zoukankan      html  css  js  c++  java
  • uva 10905 Children's Game

    #include "stdio.h"
    #include "string"
    #include "algorithm"
    #include<iostream>
    using namespace std;
    
    int cmp(string a,string b)
    {
    	return a+b>b+a;
    }
    
    int main()
    {
    	int n,i;
    	string str[55];
    	while(~scanf("%d",&n))
    	{
    		if(n==0) break;
    		for(i=0;i<n;i++) cin>>str[i];
    		sort(str,str+n,cmp);
    		for(i=0;i<n;i++) cout<<str[i];
    			printf("
    ");
    
    	}
    	return 0;
    }

    版权声明:本文为博主原创文章,未经博主允许不得转载。http://xiang578.top/

  • 相关阅读:
    doc
    doc
    doc
    doc
    doc
    doc
    doc
    doc
    java基础知识系列--- 反射,注解,泛型,内省
    CCProcxy代理服务器的配置使用
  • 原文地址:https://www.cnblogs.com/xryz/p/4848108.html
Copyright © 2011-2022 走看看