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

PROGRAMMING:Data sorting in dynamic memory

Luz5年前 (2021-05-10)题库466
Read in integer n, then read in n integers, sort these n integers from small to large and output them( Can't define integer array, using dynamic memory technology)
###Input example:
```in
five
1 5 3 4 2
```
###Output example:
```out
1 2 3 4 5
```







answer:If there is no answer, please comment