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

PROGRAMMING:Sort data

Luz5年前 (2021-05-10)题库429
Input several positive integers, sort them in ascending order and output them.
###Input format:
Enter several numbers on a line, separated by spaces.
###Output format:
Output the number sorted in ascending order, separated by spaces, and there are spaces after the last number
###Input example:
Here is a set of inputs. For example:
```in
4 5 67 3 99 2 7
```
###Output example:
The corresponding output is given here. For example:
```out
2 3 4 5 7 67 99
```







answer:If there is no answer, please comment