public static void Main(string[] args)
string choice, skare, sgina, shum, sdin, sric, ssoft, stot = "";
double karekare, ginataan, humba, dinuguan, rice, softdrinks, cash, change, total=0;
Console.WriteLine("*** SINTANG KAN-ANAN ***");
Console.WriteLine("Menu of the day\n[1] Kare-Kare - 25.00\n[2] Ginataang-gata - 10.00\n[3] Humba - 40\n[4] Dinuguan - 15.00\n[5] Rice - 10.00\n[6] Softdrinks - 12.00\n[x] Check-out and payment");
Console.WriteLine("Enter menu # of your choice: ");
choice=Console.ReadLine();
skare = "You chose: 1\n";
else if (choice.Equals("2"))
sgina = "You chose: 2\n";
else if (choice.Equals("3"))
else if (choice.Equals("4"))
else if (choice.Equals("5"))
else if (choice.Equals("6"))
ssoft = "You chose: 6\n";
Console.WriteLine("\n\nInvalid Input!!!\nPlease select the following");
Console.Write("\n\nOrder History:\n{0}\n\n", stot);
Console.Write("Please pay {0}\n", total);
Console.Write("Enter cash: ");
cash = Convert.ToDouble(Console.ReadLine());
Console.WriteLine("Your change is {0}",change);
Console.Write("Invalid Amount!\n\n");