PROGRAMMING:Large field
Design program, input n, output n × The field of n.
###Input format:
Enter an integer between 0 and 10, n ∈ [0,10]
###Output format:
Use print function to output "+", "-", "|" and space composed of field figure (each square by four "+" sign, horizontal), if the input is 0, nothing is output.
###Input example:
Here is a set of inputs. For example:
```in
one
```
###Output example:
The corresponding output is given here. For example:
```out
+ - - - - +
| |
| |
| |
| |
+ - - - - +
```
###Input example:
Here is a set of inputs. For example:
```in
four
```
###Output example:
The corresponding output is given here. For example:
```out
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
```
answer:If there is no answer, please comment
###Input format:
Enter an integer between 0 and 10, n ∈ [0,10]
###Output format:
Use print function to output "+", "-", "|" and space composed of field figure (each square by four "+" sign, horizontal), if the input is 0, nothing is output.
###Input example:
Here is a set of inputs. For example:
```in
one
```
###Output example:
The corresponding output is given here. For example:
```out
+ - - - - +
| |
| |
| |
| |
+ - - - - +
```
###Input example:
Here is a set of inputs. For example:
```in
four
```
###Output example:
The corresponding output is given here. For example:
```out
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
| | | | |
| | | | |
| | | | |
| | | | |
+ - - - - + - - - - + - - - - + - - - - +
```
answer:If there is no answer, please comment