public static void Main()
Console.Write(" H or h for Heads ");
Console.Write("\n T or t for Tails ");
Console.Write("\n S or s to Stop ");
Console.Write("\n\n Input a letter: \n");
while ((UChoice = Convert.ToChar(Console.ReadLine())).ToString().ToLower() != "s")
int Choice = new Random().Next(2);
if (UChoice == 'H' || UChoice == 'h')
Console.WriteLine("You Won!");
Console.WriteLine("You Lose...");
if (UChoice == 'T' || UChoice == 't')
Console.WriteLine("You Won!");
Console.WriteLine("You Lose...");
Console.WriteLine("\nYou won {0} out of {1} games) you played.", Win, Play);