-->
当前位置:首页 > 题库

PROGRAMMING:Sort the three numbers from small to large

Luz5年前 (2021-05-10)题库448
Input three integers, sort and output from small to large
###Input format:
1 2 3
###Output format:
1,2,3
###Input example:
Here is a set of inputs. For example:
```in
1 2 3
```
###Output example:
The corresponding output is given here. For example:
```out
1,2,3
```







answer:If there is no answer, please comment
Using function sort to realize function