1466: 函数的选择排序

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:24 Solved:11

Description

给定一个长度为十的数组,使用选择排序对数组进行升序排列

Input

一个长度为十的数组

Output

升序排列后的数组

Sample Input Copy

3 4 5 3 6 4 7 8 4 7

Sample Output Copy

3 3 4 4 4 5 6 7 7 8