PROGRAMMING:Nearest
Program input positive integer n (n < 100), then input n integers into the array, then input an integer x, and output the first number nearest to X in n integers. The distance of an integer can be defined as the absolute value of the difference( Please use pointer Technology)
###Input example:
```in
ten
72 29 5 91 63 32 68 40 57 11
one hundred
```
###Output example:
```out
ninety-one
```
###Input example:
```in
five
2 4 6 8 11
seven
```
###Output example:
```out
six
```
answer:If there is no answer, please comment
###Input example:
```in
ten
72 29 5 91 63 32 68 40 57 11
one hundred
```
###Output example:
```out
ninety-one
```
###Input example:
```in
five
2 4 6 8 11
seven
```
###Output example:
```out
six
```
answer:If there is no answer, please comment