public static void Main()
const double TIME_DISCOUNT = 0.20;
double totalWithoutDiscount;
Console.WriteLine("This is the PVCC Pizza Order Program.");
Console.Write("Please enter the size of the pizza you want: ");
pizzaSize = Console.ReadLine();
Console.Write("Please enter the topping you want: ");
toppingType = Console.ReadLine();
topping = Convert.ToDouble(toppingType);
Console.Write("Please enter the beverage you want: ");
beverageType = Console.ReadLine();
beverage = Convert.ToDouble(beverageType);
totalWithoutDiscount = beverage + topping;
total = totalWithoutDiscount - (totalWithoutDiscount * TIME_DISCOUNT);
Console.WriteLine("Pizza Order Information");
Console.WriteLine("Pizza Cost: {0:C}", topping);
Console.WriteLine("Beverage Cost: {0:C}", beverage);
Console.WriteLine("Cost of Purchase: {0:C}", totalWithoutDiscount);
Console.WriteLine("Discount Rate: {0:P2}", TIME_DISCOUNT);
Console.WriteLine("Total Cost of the Order: {0:C}", total);