public static void Main()
int[] prices = new int [] {10, 15, 30, 10, 15};
int choice, price, total=0, menu=0;
Console.WriteLine("ININI CARENDERIA");
Console.WriteLine("### M E N U ###");
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 # :");
choice = int.Parse(Console.ReadLine());
Console.WriteLine("Please pay :" + total + ".00");
Console.WriteLine("Invalid menu");