Challenge 3: Print a Matrix
In this challenge, you will figure out how to print a Matrix using a two-dimensional Array.
We'll cover the following...
Problem statement
A two-dimensional array can also be thought of as a matrix.
Implement a Java method to initialize & print a two-dimensional array of size n x n in the ...