static void Main(string[] args)
Console.WriteLine("Welcome to my Coin Toss game!");
Console.WriteLine("My program will flip a coin for you and then you will try to guess which side the coin lands on!");
Console.WriteLine("If you guess correctly six times you win!");
Console.WriteLine("If you guess correctly five times you play again!");
Console.WriteLine("If you guess correctly less than five times, you lose!");
Console.WriteLine("Please input your name.");
name = Console.ReadLine();
for (int i = 1; i <= 0; i++)
Random randoms = new Random();
rand = randoms.Next(0, 2);
Console.WriteLine("rand is" +rand + "you are in the " + i + "loop and" + success + "successes" );
Console.WriteLine(name + ", 0 is for Heads and 1 is for Tails.");
Console.WriteLine(name + ", please guess Heads or Tails by selecting 0 for Heands and 1 for Tails!");
choice = int.Parse(Console.ReadLine());
Console.WriteLine(name + ", you got it!!");
Console.WriteLine(name + ", Sorry!!!!");
Console.WriteLine("Congrats!!!" + name + "You won!! you had " + success + "success");
Console.WriteLine("Sorry!" + name + "Please play again!! you had" + success + "success");
Console.WriteLine("Sorry!!" + name + "you lost!! you had" + success + "success");