Problem2101--数组删除

2101: 数组删除

Time Limit: 1.000 Sec  Memory Limit: 128 MB
Submit: 77  Solved: 23
[Submit] [Status] [Web Board] [Creator:]

Description

 输入n个数字,再输入一个位置x,请你输出x前面以及x后面的数字。(n<=1000)

Input

包括三行 , 第一行有一个整数n;第二行有n个整数;第三行有一个整数X,为要查找的数。

Output

输出删除该元素后的新数组。

Sample Input

5
70 30 20 60 50 
2

Sample Output

70 20 60 50

Source/Category

mc 

[Submit] [Status]