Write a Java program that creates the following matrix by ad
Write a Java program that creates the following matrix by adding 3 to the previous value, then displays it. The matrix has 6 rows and 4 columns. Allow for a fixed width of 6 horizontal columns for each value in the display. Notice the digits are right aligned. Base your solution on nested for loops. Hint: see Notes 2 Section N for how to format the output. Code this as a single main() method (i.e., do not use any additional methods for this problem). Please use no arrays
0 3 6 9
12 15 18 21
24 27 30 33
36 39 42 45
48 51 54 57
60 63 66 69
Solution
Please find the required program along with its output. Please see the comments against each line to understand the step.
----------------------------------------------------------
OUTPUT:
0 3 6 9
12 15 18 21
24 27 30 33
36 39 42 45
48 51 54 57
60 63 66 69
