1371 - 函数实现冒泡法排序
Time Limit : 1 秒
Memory Limit : 128 MB
用函数实现冒泡法对数组元素按由小到大排序
Input
Output
Examples
Input
5 5 4 3 2 1
Output
1 2 3 4 5