2641: C语言程序设计教程(第三版)课后习题10.1
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
输入三个整数,按由小到大的顺序输出。
Input
三个整数
Output
由小到大输出成一行,每个数字后面跟一个空格
Sample Input Copy
2 3 1
Sample Output Copy
1 2 3