Problem B: 对10个整数进行排序

Problem B: 对10个整数进行排序

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

Description

对10个整数从小到大排序。

步骤:

1 使用循环和 scanf 语句读入这10个数,把这些数保存到数组中

2 对这10个数进行排序

Input

10个整数

Output

排序好的10个整数

Sample Input

4 85  3 234 45 345 345 122 30 12

Sample Output

3
4
12
30
45
85
122
234
345
345