9698: 【C语言训练】排序问题<2>
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
将十个数进行从大到小的顺序进行排列
Input
十个整数
Output
以从大到小的顺序输出这个十个数
Sample Input Copy
1 2 3 4 5 6 7 8 9 10
Sample Output Copy
10 9 8 7 6 5 4 3 2 1