public static void Main()
Console.WriteLine("Mono6H-Battleship");
string missedGuess = "0";
for ( int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
Console.Write (myArray3[i,j]);
Console.WriteLine ("Guess the ship's row number: ");
guessX = int.Parse ( Console.ReadLine () );
Console.WriteLine ("Guess the ship's colum number: ");
guessY = int.Parse ( Console.ReadLine () );
Console.WriteLine ("\n\n");
if(guessX == shipX && guessY == shipY)
myArray3[guessX,guessY] = missedGuess;
myArray3[guessX,guessY] = shipString;
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
Console.Write (myArray3[i,j]);
Console.WriteLine ("HIT! You win!");