PROGRAMMING:Output the English name of the corresponding month
Enter a positive integer repeat (0 < repeat < 10) and perform the following operations:
Write a program, input a month, output the corresponding English name, request to use the pointer array to represent the English name of 12 months.
If the input month is wrong, the prompt message will be output.
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( repeat=3)
five
nine
fourteen
```
###Output example:
```out
May
September
Wrong input!
```
answer:If there is no answer, please comment
Write a program, input a month, output the corresponding English name, request to use the pointer array to represent the English name of 12 months.
If the input month is wrong, the prompt message will be output.
Input and output example: description in brackets, no input and output required
###Input example:
```in
three ( repeat=3)
five
nine
fourteen
```
###Output example:
```out
May
September
Wrong input!
```
answer:If there is no answer, please comment