杭电2000 ASCII码排序

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2000

注意过滤掉输入三个字符之后的回车键即可

#include<stdio.h>

int main()

{

	char a,b,c,t;

	while(scanf("%c%c%c",&a,&b,&c)!=EOF)

	{

		getchar();

		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;

		}

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

	}

}

  

你可能感兴趣的:(ASCII)