Question: Write a Java program that will use a two-dimensional array to store the multiplication table for numbers between 0 and n (input from user, range
Write a Java program that will use a two-dimensional array to store the multiplication table for numbers between 0 and n (input from user, range 3 - 30 --> validate input!). Use two methods (to generate the multiplication table and print.) Generate output similar to the sample output below.
Sample Output:
Do you want to start(Y/N): y Enter an integer n (3 - 30): 32
ERROR! Valid range: 3 - 30! REENTER: 13
o to 13 multiplication table
-----------------------------------
------------------------------------
Do you want to continue(Y/N): y
Enter an integer n (3 - 30): 8
0 to 8 multiplication table
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
