PROGRAMMING:Jmu-java-02 basic syntax-04-dynamic array
According to the input n, print n-line multiplication formula table.
You need to use a two-dimensional string array to store every item in the multiplication formula table, such as' 1 * 1 = 1 '
In order to ensure that two-dimensional arrays are used in the program, it is necessary to use 'arrays. Deeptostring' to print the contents of two-dimensional arrays after printing the multiplication formula table.
**Reminder: * format output can use 'string. Format' or 'system. Out. Printf'.
###Output format description
1. There is no space at the end of each line.
2. There are 7 characters between each expression (from the first character of the first expression to the first character of the next expression). For example, '2 * 1 = 2, 2 * 2 = 4' from the first 2 to the first letter of the second '` 2 * 2 = 4', there are a total of 7 characters (including spaces, in this case, there are 2 spaces).
###Input example:
```in
two
five
```
###Output example:
```out
1*1=1
2*1=2 2*2=4
[[1*1=1], [2*1=2, 2*2=4]]
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
4*1=4 4*2=8 4*3=12 4*4=16
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25
[[1*1=1], [2*1=2, 2*2=4], [3*1=3, 3*2=6, 3*3=9], [4*1=4, 4*2=8, 4*3=12, 4*4=16], [5*1=5, 5*2=10, 5*3=15, 5*4=20, 5*5=25]]
```
answer:If there is no answer, please comment
You need to use a two-dimensional string array to store every item in the multiplication formula table, such as' 1 * 1 = 1 '
In order to ensure that two-dimensional arrays are used in the program, it is necessary to use 'arrays. Deeptostring' to print the contents of two-dimensional arrays after printing the multiplication formula table.
**Reminder: * format output can use 'string. Format' or 'system. Out. Printf'.
###Output format description
1. There is no space at the end of each line.
2. There are 7 characters between each expression (from the first character of the first expression to the first character of the next expression). For example, '2 * 1 = 2, 2 * 2 = 4' from the first 2 to the first letter of the second '` 2 * 2 = 4', there are a total of 7 characters (including spaces, in this case, there are 2 spaces).
###Input example:
```in
two
five
```
###Output example:
```out
1*1=1
2*1=2 2*2=4
[[1*1=1], [2*1=2, 2*2=4]]
1*1=1
2*1=2 2*2=4
3*1=3 3*2=6 3*3=9
4*1=4 4*2=8 4*3=12 4*4=16
5*1=5 5*2=10 5*3=15 5*4=20 5*5=25
[[1*1=1], [2*1=2, 2*2=4], [3*1=3, 3*2=6, 3*3=9], [4*1=4, 4*2=8, 4*3=12, 4*4=16], [5*1=5, 5*2=10, 5*3=15, 5*4=20, 5*5=25]]
```
answer:If there is no answer, please comment