Problem1242--数组排序

1242: 数组排序

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 940  Solved: 423
[Submit] [Status] [Web Board] [Creator:]

Description

对数组中的数进行升序排序,数组长度固定为5,例如 :
int[] array = { 9, 6, 7, 2, 1 };
请在您的代码中,按照示例定义您的数组。



Input

9 6 7 1 2

Output

1 2 6 7 9

Sample Input

9 6 7 1 2

Sample Output

1 2 6 7 9

Source/Category

 

[Submit] [Status]