public static void Main()
Console.WriteLine("Hi! So cool you just decided to pass through here, huh?");
Console.WriteLine("Anyway, wanna play some cool game? Just say yes or no");
static void functionName()
string answer = Console.ReadLine();
string answerLower = answer.ToLower();
if (answerLower == "yes")
Console.WriteLine("Great!");
Console.WriteLine("So let's start");
else if (answerLower == "no")
Console.WriteLine("Oh ok. Well, you'll play it anyway");
Console.WriteLine("So let's start");
Console.WriteLine("Uh, seems you didn't understand.");
Console.WriteLine("So: yes or no?");
static void functionName2()
Console.WriteLine("Type below what's the total of 5 x 2 + 2");
string answer3 = "twelve";
string userInput3 = Console.ReadLine();
string Input3 = userInput3.ToLower();
if (Input3 == "12"||Input3 == answer3)
Console.WriteLine("Correct! How about a question now!");
Console.WriteLine("I-It's not that hard, you know...");
static void functionName3()
Console.WriteLine("In Paper Mario: The Thousand-Year Door, how many Crystal Stars are?");
string userInput4 = Console.ReadLine();
string answer4 = "seven";
string Input4 = userInput4.ToLower();
if (Input4 == "7"|| Input4 == answer4)
Console.WriteLine("Correct again! (even though I bet you had to look up about it hmm)");
Console.WriteLine("And now the hardest question!");
Console.WriteLine("Nope. Gonna ask again");
static void functionName4()
Console.WriteLine("What YEAR are we in? (in numbers please)");
string answerfinal = Console.ReadLine();
if (answerfinal == "2018")
Console.WriteLine("That's correct!!");
Console.WriteLine("This year... in numbers, please...");
Console.WriteLine("You know what those numbers are?");
string finalInput = Console.ReadLine();
string trueInput = finalInput.ToLower();
else if (trueInput == "no")
Console.WriteLine("That, my friend, is the release date for Super Smash Bros. Ultimate coming to the Nintendo Switch. Now tell me your top 3 mains :^)");
string [] mainNames = new string [3];
Console.WriteLine("First?");
mainNames[0] = Console.ReadLine();
Console.WriteLine("Second?");
mainNames[1] = Console.ReadLine();
Console.WriteLine("And?...");
mainNames[2] = Console.ReadLine();
Console.WriteLine("So you main...");
Console.WriteLine(mainNames[0] + ", " + mainNames[1] + ", " + mainNames[2]);
Console.WriteLine("Huh, lame...");