程序员人生 网站导航

杭电 HDU ACM 2000 ASCII码排序

栏目:php教程时间:2015-04-24 08:25:46

ASCII码排序

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 103963    Accepted Submission(s): 43442


Problem Description
输入3个字符后,按各字符的ASCII码从小到大的顺序输出这3个字符。
 

Input
输入数据有多组,每组占1行,有3个字符组成,之间无空格。
 

Output
对每组输入数据,输出1行,字符中间用1个空格分开。
 

Sample Input
qwe asd zxc
 

Sample Output
e q w a d s c x z
 

Author
lcy
 唉 又到了上年做过的水题。上年做的都是2开头序列号。今年重新a它1遍。顺便将答案记录在这。同时也很想对照前后两个不同时期做一样题目的感觉。
是否是简单了呢?
#include<iostream> #include<algorithm> using namespace std; int main() { char ls[4]; while(cin>>ls[0]>>ls[1]>>ls[2]) { sort(ls,ls+3);cout<<ls[0]<<" "<<ls[1]<<" "<<ls[2]<<endl; } return 0; }

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐