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

PROGRAMMING:Sort by three numbers

Luz5年前 (2021-05-10)题库372
###Title Description
Give you three integers, please output from small to large.
###Input Description:
Several groups of data, each group of data occupies a row, each group of data is three integers, separated by spaces.
###Output Description:
Each group of data is re output from small to large according to the requirements, the output three integers are separated by a space, and each group of data occupies a single line.
###Requirements
Please play what you have learned and use pointer programming.
###Input sample
```in
6 1 5
8 5 2
```
####Output sample
```out
1 5 6
2 5 8
```






answer:If there is no answer, please comment