1708: 分数排序
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:85
Solved:49
Description
有一个数组,存储了同学们的分数,数组的第1个数值表示人数,第2个表示最高分,从第3个开始存储了每个人的分数,但是没有排序。现在做一个程序将分数从低到高进行排序。
Input
按照要求输入并存储到数组,输入数据使用空格分隔。人数不超过100人。
Output
输出排序后的数组。
Sample Input Copy
5 99 89 98 79 99 85
Sample Output Copy
5 99 79 85 89 98 99