百题A-1

 

 

#include <iostream>

#include <cstdio>

#include <algorithm>

using namespace std;

char a,b,c;

int main()

{

    while(scanf("%c%c%c\n",&a,&b,&c)!=EOF)//这里读取格式上多用一个换行符

    {//不然\n会被读到第二次的a字符中

        if(a>b) swap(a,b);//冒泡原理

        if(b>c) swap(b,c);

        if(a>b) swap(a,b);

        printf("%c %c %c\n",a,b,c);

    }

    return 0;

}

posted @ 2020-12-21 15:05  py佐料  阅读(42)  评论(0编辑  收藏  举报