public static void Main()
string choice, k1, g2, h3, d4 ,r5 ,s6 , totals = " ";
double karekare,ginataan,humba,dinuguan,rice,softdrinks,total=0,cash,change;
Console.WriteLine(" Carenderya Restaurant ");
Console.WriteLine("Menu of the day: \t");
Console.WriteLine("[1]Kare-Kare-25.00\n[2]Ginataang Gata-10.00\n[3]Humba-40.00\n[4]Dinuguan-15.00\n[5]Rice-10.00\n[6]Soft-Drink-12.00\n[x]Check-out and Payment");
Console.Write("Enter the # of your order: ");
choice = Console.ReadLine();
Console.WriteLine("\nYou chose Kare-Kare\n");
else if (choice.Equals("2"))
Console.WriteLine("\nYou chose Ginataang-Gata\n");
else if (choice.Equals("3"))
Console.WriteLine("\nYou chose Humba\n");
else if (choice.Equals("4"))
Console.WriteLine("\nYou chose Dinuguan\n");
else if (choice.Equals("5"))
Console.WriteLine("\nYou chose Rice\n");
else if (choice.Equals("6"))
Console.WriteLine("\nYou chose Soft-Drink\n");
Console.WriteLine("\nYou chose x\n");
Console.Write("Order:",totals);
Console.Write("Please pay {0} ",total);
Console.Write("\nEnter cash in Php ");
cash = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Your change is Php {0}.",change);
Console.WriteLine("Thank You, Come Again");
Console.Write("Invalid Amount!");