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

PROGRAMMING:Sort (array)

Luz5年前 (2021-05-10)题库427
Input a number of integers into an array, sort it from small to large and then output.
###Input format:
Enter a number of integers and end with EOF.
###Output format:
Sorted array
Numbers are separated by a space.
###Input example:
```in
3 5 7 7 2 1 6
```
###Output example:
```out
1 2 3 5 6 7 7
```







answer:If there is no answer, please comment