2623: C语言程序设计教程(第三版)课后习题7.4
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:1
Solved:1
Description
已有一个已排好的9个元素的数组,今输入一个数要求按原来排序的规律将它插入数组中。
Input
第一行,原始数列。
第二行,需要插入的数字。
Output
排序后的数列
Sample Input Copy
1 7 8 17 23 24 59 62 101
50
Sample Output Copy
1
7
8
17
23
24
50
59
62
101