1262: C语言10.34

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:4 Solved:3

Description

用指向指针的指针的方法对n个整数从小到大排序并输出。要求将排序单独写成一个函数。n个整数在主函数中输入,经过函数排序后在主函数中输出。

Input

第一行有一个整数n,保证n不超过100。
第二行有n个整数,用空格隔开。

Output

在一行内输出从小到大有序的n个整数,每个整数后输出一个空格。
请注意行尾输出换行。

Sample Input Copy

10
1 3 5 7 9 2 4 0 8 6

Sample Output Copy

0 1 2 3 4 5 6 7 8 9 

Source/Category