using System.Diagnostics;
using System.Text.RegularExpressions;
using System.Collections;
using System.Collections.Generic;
public static void Main()
Console.WriteLine("Welcome to the Central Pizza Parlor!");
Console.WriteLine("Would you like to order a pizza today? Enter y for Yes or n for No.");
string Order = Console.ReadLine();
Console.WriteLine("Great! Let's get started, please pick the size of your pizza:");
Console.WriteLine("1 - Small $5.00");
Console.WriteLine("2 - Medium $7.00");
Console.WriteLine("3 - Large $9.00");
Console.WriteLine("Please enter the number for the pizza size you would like.");
string sizeAsAString = Console.ReadLine();
int size = Convert.ToInt32(sizeAsAString);
Console.WriteLine("Please select which topping you would like on your pizza.");
Console.WriteLine("1 - Pepperoni $2.00");
Console.WriteLine("2 - Ham $2.00");
Console.WriteLine("3 - Onions $1.00");
Console.WriteLine("4 - Mushrooms $1.00");
Console.WriteLine("5 - Green Peppers $1.00");
Console.WriteLine("Please enter the number for the corresponding topping you would like.");
string toppingAsAString = Console.ReadLine();
int topping = Convert.ToInt32(toppingAsAString);
ToppingName = ("Pepperoni");
ToppingName = ("Onions");
ToppingName = ("Mushrooms");
ToppingName = "Green Peppers";
TotalCost = (SizeCost + ToppingCost);
TotalWithTax = (TotalCost + Tax);
Console.WriteLine("Here are the details for your order.");
Console.WriteLine("Thank you for your business!");
Console.WriteLine("You can pick up your pizza in 25 minutes!");
DateTime now = DateTime.Now;
Console.WriteLine("Time Ordered: "+now+" ");
DateTime pickup = DateTime.Now.AddMinutes(25);
Console.WriteLine("Pick Up At: "+pickup+" ");
Console.WriteLine("Size: " +SizeName+ " ");
Console.WriteLine("Topping: " +ToppingName+ " ");
Console.WriteLine("---------------");
Console.WriteLine("Pizza Price: $ "+TotalCost+" ");
Console.WriteLine("Tax: $" +Tax+ " ");
Console.WriteLine("Total Price: $" +TotalWithTax+ " ");
Console.WriteLine("Alright, have a great day!");