1707: 【一维数组】冒泡排序(例题)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:50 Solved:32

Description

        例5.6      编程输入十个正整数,然后自动按从大到小的顺序输出。(冒泡排序)
        注意:需修改教材例题中程序的输出部分,仔细对照题中的输出格式。
 

Input

一行,十个整数,所有整数不超过32767。
 

Output

从大到小输出十个整数,整数之间用一个空格分隔,最后不能有空格。
 

Sample Input Copy

2 5 8 6 12 34 65 22 16 55

Sample Output Copy

65 55 34 22 16 12 8 6 5 2

Source/Category