Create a “Main” method that contains two 2-Dimensional arrays of
characters. The first array, which we will call our visible field,
needs to be 5 by 5 and should initially hold the underscore
character “_”. This will be used in our game of
minesweeper to represent the possible locations the player can
check.
The second array, which we will call our hidden field, should
also be 5 by 5 but filled with the capital letter "S” which means
safety. However, we...