1266: C语言程序设计教程(第三版)课后习题10.1
Memory Limit:128 MB
Time Limit:1.000 S
Submit数:1
Solved数:1
Description
输入三个整数,按由小到大的顺序输出。使用指针
Input描述
三个整数
Output描述
由小到大输出成一行,每个数字后面跟一个空格
Sample Input Copy
2 3 1
Sample Output Copy
1 2 3
Source/Category
⋮