赞
踩
对给定的10个国家名,调用sort函数对他们排序后输出。
输入十行,每一行一个国家名。
中国
蒙古
朝鲜
韩国
日本
菲律宾
越南
老挝
柬埔寨
缅甸
输出为一行,按要求输出结果,用空格连接。
朝鲜 菲律宾 韩国 柬埔寨 老挝 蒙古 缅甸 日本 越南 中国
中英文排序均可
/*** * @Author: ZXW * @Date: 2023-02-17 14:02:44 * @LastEditors: ZXW * @LastEditTime: 2023-02-17 14:18:34 * @FilePath: \DATA\2023\Feb\217-.cpp */ #include<bits/stdc++.h> using namespace std; int main(){ string a[10]; for(int i=0;i<10;i++){ cin>>a[i]; } sort(a,a+10); for(int i=0;i<10;i++){ cout<<a[i]<<' '; } }
PS C:\DATA\2023\Feb> cd "c:\DATA\2023\Feb\" ; if ($?) { g++ 217-.cpp -o 217- } ; if ($?) { .\217- }
中国
蒙古
朝鲜
韩国
日本
菲律宾
越南
老挝
柬埔寨
缅甸
朝鲜 菲律宾 韩国 柬埔寨 老挝 蒙古 缅甸 日本 越南 中国
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。