hdu2000

来源:互联网 发布:网络商家卖货合作平台 编辑:程序博客网 时间:2024/04/29 20:34

ASCII码排序

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


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


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


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


Sample Input
qweasdzxc
 


Sample Output
e q wa d sc x z
 


Author
lcy
 


Source
C语言程序设计练习(一)

#include <stdio.h>
#include <stdlib.h>

int main()
{
    char ch[3],temp;
    int i,n,j;
    while(scanf("%s",ch )!=EOF)
        {
        for(i=0;i<3;i++)
        {
            for(j=0;j<2;j++)
        {
            if(ch[j]>ch[j+1])
            {
                temp=ch[j];
                ch[j]=ch[j+1];
                ch[j+1]=temp;
            }
        }
        }
        for(i=0;i<3;i++)
        if(i!=2)printf("%c ",ch[i]);
        else printf("%c\n",ch[i]);
        }
}

 

原创粉丝点击