HDOJ 2000 ASCII码排序

来源:互联网 发布:系统网管软件 编辑:程序博客网 时间:2024/06/06 02:20

ASCII码排序

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


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

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

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

Sample Input
qweasdzxc
 

Sample Output
e q wa d sc x z
 

注意对字符的取入

getchar()

没有的话,试试昂


 

#include<stdio.h>#include<stdlib.h>#include<math.h>int main() {int a,b,c,t;char x,y,z;while(scanf("%c%c%c",&x,&y,&z)!=EOF) {getchar();a=x;b=y;c=z;if(a<b) {t=a;a=b;b=t;}if(a<c) {t=a;a=c;c=t;}if(b<c) {t=b;b=c;c=t;}x=a;y=b;z=c;printf("%c %c %c\n",z,y,x);}return 0;}

0 0