3187: 排序模板(洛谷P1177)
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
将读入的 N 个数从小到大排序后输出。
Input
输入2行。第一行为一个正整数 N。第二行包含 N 个空格隔开的正整数 aᵢ,为你需要进行排序的数。
Output
输出1行。将给定的 N 个数从小到大输出,数之间空格隔开,行末换行且无空格。
Sample Input Copy
5
4 2 4 5 1
Sample Output Copy
1 2 4 4 5