public static void Main()
double MedPJPrice = 10.00;
double MedFriesPrice = 0.00;
double McChickenPrice = 198.00;
double LrgSpritePrice = 0.00;
double TripChzBrgPrice = 275.00;
double LrgTripChzBrgMlPrice = LrgSpritePrice + LrgFries + TripChzBrgPrice;
double McSpaghettiPrice = 63.00;
string McSpag = "McSpaghetti";
string McChx = "(S)McChicken";
string MedPJ = "(S)MUp Med PJ";
string MedF = "(S)Mm Med Fries";
string TripChzBrg = "TripChzBrg LE";
string LrgSprite = "LEVM LrgSprite";
string LrgF = "Lrg Fries";
string salesC = "Sales (SC)";
double salesCtotal = McChickenPrice + MedPJPrice + MedFriesPrice;
string lessV = "Less Vat";
double lessVtotal = 22.28;
string AmountNetofVAT = "Amount net of VAT";
double amtnetVATotal = 185.72;
string lessSCDiscount = "Less SC Discount";
double LSCDTotal = 37.14;
string SubTotalSalesSC = "Sub Total Sales (SC)";
double SubTotalSalesSCTOTAL = 148.58;
string REGSubTotalSales = "Sub Total Sales (Regular)";
double REGSUBTOTALSALES = 338.00;
string EATotal = "Eat-In Total";
double RealTotal = salesCtotal - lessVtotal - LSCDTotal + LrgTripChzBrgMlPrice + McSpaghettiPrice;
string cashrcv = "Cash Tendered";
double cust_cash = 1000.00;
string change = "Change";
double chng = cust_cash - RealTotal;
Console.WriteLine("{0}{1,20}{2,17}",qty,prc,total);
Console.WriteLine(" 1 {0}{1,13:f}{2,17:f}",McChx,McChickenPrice,McChickenPrice);
Console.WriteLine(" 1 {0}{1,9:f}{2,17:f}",MedPJ,MedPJPrice,MedPJPrice);
Console.WriteLine(" 1 {0}",MedF);
Console.WriteLine(" 1 {0}{1,12:f}{2,17:f}",TripChzBrg,TripChzBrgPrice,TripChzBrgPrice);
Console.WriteLine(" 1 {0}",LrgSprite);
Console.WriteLine(" 1 {0}",LrgF);
Console.WriteLine(" 1 {0}{1,13:f}{2,17:f}",McSpag,McSpaghettiPrice,McSpaghettiPrice);
Console.WriteLine("{0}{1,36:f}",salesC,salesCtotal);
Console.WriteLine("{0}{1,37:f}",lessV,lessVtotal);
Console.WriteLine("{0}{1,29:f}",AmountNetofVAT,amtnetVATotal);
Console.WriteLine("{0}{1,29:f}",lessSCDiscount,LSCDTotal);
Console.WriteLine("{0}{1,26:f}",SubTotalSalesSC,SubTotalSalesSCTOTAL);
Console.WriteLine("{0}{1,21:f}",REGSubTotalSales,REGSUBTOTALSALES);
Console.WriteLine("{0}{1,34:f}",EATotal,RealTotal);
Console.WriteLine("{0}{1,34:f}",cashrcv,cust_cash);
Console.WriteLine("{0}{1,40:f}",change,chng);