public static void Main()
Console.WriteLine("Hey Garfield, what do you want for lunch?");
Console.WriteLine("A: Pizza");
Console.WriteLine("B: Pasta");
Console.WriteLine("C: Fried Rice");
Console.WriteLine("D: Lasagna\n\n");
Console.WriteLine("Pleasze enter the letter from the following menu)");
strChoice = Console.ReadLine();
Console.WriteLine("Great Choice! Pizza will take about 25 mins.");
else if (strChoice == "B")
Console.WriteLine("Pasta might take a little longer, and we are out of meatballs!");
else if (strChoice == "C")
Console.WriteLine("You never had fried rice for lunch, are you sure you want this?");
else if (strChoice == "D")
Console.WriteLine("Ummm, Lasagna.... coming right up!");
Console.WriteLine("Not sure what you want, but definately not on the menu!");