public static void Main(string[] args)
Console.WriteLine("You've entered a fast food restaurant.");
Console.WriteLine("You decide what to get from the menu. ");
Console.WriteLine("You go up to the counter and the cashier asks... ");
Console.WriteLine("What do you go by as, (name) and what would you like to order?");
string Name = Console.ReadLine();
string steak = @"PHP80 burger";
string burger = @"PHP60fries";
string icecream = @"PHP50 ice cream";
string waffles = @"PHP90 chicken";
Console.WriteLine(Name + ", Pick from the following food selection \nburger (Type 1)\nfries(Type 2)\nicecream (Type 3)\nchicken(Type 4)");
string FoodSecondPhase = Console.ReadLine();
Console.WriteLine(steak);
Console.WriteLine("Your have chosen burger");
Console.WriteLine("You have spent PHP 80 on this item");
Console.WriteLine("Enjoy your meal!");
Console.WriteLine(burger);
Console.WriteLine("Your have chosen fries");
Console.WriteLine("You have spent PHP 60 on this item");
Console.WriteLine("Enjoy your meal!");
Console.WriteLine(icecream);
Console.WriteLine("You have chosen icecream");
Console.WriteLine("You have spent PHP 50 on this item");
Console.WriteLine("Enjoy your meal!");
Console.WriteLine(waffles);
Console.WriteLine("You have choosen chicken");
Console.WriteLine("You have spent PHP 90 on this item");
Console.WriteLine("Enjoy your meal!");
Console.WriteLine(Name + ", are you statisfied with your " + FOOD + "? (y/n) ");
string yn = Console.ReadLine();
if ("y".Equals(yn.ToLower()))
Console.WriteLine("Enjoy your meal <3");
Console.WriteLine("Lets try again... Please pick from the menu!");