public static void Main()
int[] prices = new int [] {10, 15, 30, 10, 15};
int Choices, price, Total=0, order=0;
Console.WriteLine("NANAY BERING CARENDERIA");
Console.WriteLine("Menu of the day");
Console.WriteLine("[1] Choco Flavored Champorado - 10.00\n[2] Ginataang Gata - 15.00\n[3] Chicken Kare-kare - 30.00");
Console.WriteLine("[4] Rice - 10.00\n[5] Drink - 15.00 \n[0] Checkout and place order");
Console.Write("Enter menu#: ");
Choices = int.Parse(Console.ReadLine());
Console.WriteLine("Please pay :" + Total + ".00");
Console.WriteLine("Invalid menu");