public static void Main()
Console.WriteLine("what is my favrite type of food?");
string answer1 = Console.ReadLine();
if (answer1 == "mexican")
{Console.WriteLine("you are correct");
Console.WriteLine("You have " + score + " points.");}
{Console.WriteLine("Wrong!");}
Console.WriteLine("How tall do you think i am?");
string answer2 = Console.ReadLine();
if (answer2 == "6 feet" || answer2 == "about 6 feet" || answer2 == "6 foot" || answer2 == "6ft" )
{Console.WriteLine("you are correct");
Console.WriteLine("You have " + score + " points.");}
{Console.WriteLine("Wrong!");}
Console.WriteLine("How old do you think i am?");
string answer3 = Console.ReadLine();
{Console.WriteLine("you are correct");
Console.WriteLine("You have " + score + " points.");}
{Console.WriteLine("Wrong!");}
Console.WriteLine("How many brothers do i have?");
string answer4 = Console.ReadLine();
{Console.WriteLine("you are correct");
Console.WriteLine("You have " + score + " points.");}
{Console.WriteLine("Wrong!");}
Console.WriteLine("Is Logan my friend?");
string answer5 = Console.ReadLine();
{Console.WriteLine("you are correct");
Console.WriteLine("You have " + score + " points.");}
{Console.WriteLine("Wrong!");}
Console.WriteLine("Did you have fun?");
string answer6 = Console.ReadLine();
if (answer6 == "yes" || answer6 == "Yes")
{Console.WriteLine("you are correct");
Console.WriteLine("You had " + score + " points out of 6 point.");}
{Console.WriteLine("Wrong!");
Console.WriteLine("You had " + score + " points out of 6 point.");}