标签:c++ 生活
/*
*copyright(c) 2014,烟台大学计算机学院
*All rights reserved。
*文件名称:国家排序
*作者:王忠
*完成日期:2014.11.27
*版本号:v1.0
*
*问题描述:给10个国家按首字母排序
*输入描述:国家名
*程序输出:输出排序后的国家名
#include <iostream> #include <string> using namespace std; int main() { string char country[10],a; int i; for(i=0; i<10; i++) { cin>>country[i]; } for(int j=0; j<10; j++) for(i=0; i<10-j; i++) { if(country[i]>country[i+1]) { a=country[i]; country[i]=country[i+1]; country[i+1]=a; } } for(i=0; i<10; i++) cout<<country[i]<<endl; return 0; }
标签:c++ 生活
原文地址:http://blog.csdn.net/wangzhongwangmin/article/details/41546505