public static class Program
public static void Main()
Console.WriteLine("Welcome to Cai's kitchen. We offer diverse dishes");
Console.WriteLine("(Please type: O to order, X to remove and T to takeout)");
Console.WriteLine("C1 = Spaghetti: 100 Php");
Console.WriteLine("C2 = Carbonara: 100 Php");
Console.WriteLine("C3 = Lasagna: 150 Php");
Console.WriteLine("C4 = Pesto Pasta: 100 Php");
Console.WriteLine("C5 = Garlic Bread: 50 Php (Good for 3 people)");
Console.WriteLine("C6 = 15 Inch Pizza: 200 Php (Pepperoni only)");
Console.WriteLine("C7 = Mac and Cheese: 125 Php");
Console.WriteLine("C8 = Lobster Mac and Cheese: 190 Php");
Console.WriteLine("C9 = Grilled Steak with Potato Salad: 250 Php");
Console.WriteLine("C10 = Chicken Teriyaki: 150 Php");
string action = Console.ReadLine().ToUpper();
Console.WriteLine("what is your order?");
string a = Console.ReadLine().ToUpper();
Console.WriteLine("how many?");
b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("ordered: Spaghetti x:" + b);
Console.WriteLine("ordered: Carbonara x:" + b);
Console.WriteLine("ordered: Lasagna x:" + b);
Console.WriteLine("ordered: Pesto Pasta x:" + b);
Console.WriteLine("ordered: Garlic Bread x:" + b);
Console.WriteLine("ordered: 15 Inch Pizza x:" + b);
Console.WriteLine("ordered: Mac and Cheese x:" + b);
Console.WriteLine("ordered: Lobster Mac and Cheese x:" + b);
Console.WriteLine("ordered: Grilled Steak with Potato Salad x:" + b);
Console.WriteLine("ordered: Chicken Teriyaki x:" + b);
Console.WriteLine("i'm sorry, i didn't understand that (order cancelled)");
Console.WriteLine("what do you want to remove?");
string c = Console.ReadLine().ToUpper();
Console.WriteLine("How");
d = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("removed: Spaghetti x:" + d);
Console.WriteLine("removed: Carbonara x:" + d);
Console.WriteLine("removed: Lasagna x:" + d);
Console.WriteLine("removed: Pesto Pasta x:" + d);
Console.WriteLine("removed: Garlic Bread x:" + d);
Console.WriteLine("removed: 15 Inch Pizza x:" + d);
Console.WriteLine("removed: Mac and Cheese x:" + d);
Console.WriteLine("removed: Lobster Mac and Cheese x:" + d);
Console.WriteLine("removed: Grilled Steak with Potato Salad x:" + d);
Console.WriteLine("removed: Chicken Teriyaki x:" + d);
Console.WriteLine("I'm sorry, can you repeat that?");
Console.WriteLine("Your total is: "+ bill);
Console.WriteLine("Please enter your payment: ");
int payment = Convert.ToInt32(Console.ReadLine());
int change = payment - bill;
Console.WriteLine("Here is your change: " + change);}
Console.WriteLine("Payment should be " + bill + " or higher.");
Console.WriteLine("Can you please repeat that?");
Console.WriteLine("Thank you for coming!");