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

PROGRAMMING:bubble sort

Luz5年前 (2021-05-10)题库361
This problem requires reading 10 integers into the array, and the 10 numbers from small to large sorting, requires the use of bubble sorting.
###Input format:
Enter 10 integers and store them in the array.
###Output format:
Direct output from small to large ordered array, each number output occupies 5 column width.
###Input example:
```in
10 9 13 17 29 30 11 7 8 3
```
###Output example:
```out
3 7 8 9 10 11 13 17 29 30
```







answer:If there is no answer, please comment