public static void Main()
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"},
{ "~", "~", "~", "~", "~", "~", "~", "~"}};
for (int boardCount = 0; boardCount<8; boardCount++)
for(int boardCount2=0; boardCount2<8; boardCount2++)
Console.Write(" {0}", board[boardCount , boardCount2]);
for (int i = 0; i<8; i++)
Random random = new Random();
int BoardVertical=random.Next(x);
Random random2 = new Random();
int BoardHorizontal=random.Next(x);
string Placement = board[BoardVertical , BoardHorizontal];
while (Condition == false)
Console.WriteLine("Write which row , using CS numbers (0-7): ");
int Choice1 = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Write which column , using CS numbers (0-7): ");
int Choice2 = Convert.ToInt32(Console.ReadLine());
if (board[Choice1 , Choice2] == "T")
Console.WriteLine("Hit, Nice Shot");
board[Choice1 , Choice2] = "~";
Console.WriteLine("You Win!!");
Console.WriteLine("You have {0} points", Points, " and have used {1} attempts", Attempts);;
Console.WriteLine("Missed, Try again");
Console.WriteLine("You have done too many attempts! You Lose!");
Console.WriteLine("You have used {0} attempts", Attempts);