1086: ASCII码排序(多实例测试)

#include<stdio.h>
int main()
{
    char a,b,c,t;
    while(scanf("%c%c%c ",&a,&b,&c)!=EOF)//在scanf的格式控制串中加入空白符的作用是跳过0个或多个空白符(包括空格、回车或制表符)。
    {

        if(a>b)
        {
            t=a;
            a=b;
            b=t;
        }
        if(b>c)
        {
           t=b;
           b=c;
           c=t;
        }
        if(a>b)
        {
           t=a;
           a=b;
           b=t;
        }
        printf("%c %c %c\n",a,b,c);
    }
    return 0;
}
上一篇:Error: rendered manifests contain a resource that already exists.


下一篇:解决git clone pull push慢必杀技