public static void Main()
double AsadaTaco, ChickenTaco, ViggieTaco, Chocolatechipcookie, Soda, Water
IVAa, IVAb, IVAp, sub, total, vpA, vpCHi, vpV, vpCho, vpS, vpW;
int nAsadaTaco, nChickenTaco, nVeggieTaco, nChocolatechipcookie, nSoda, nWater;
Console.Write("Welcome to The Big Taco");
Console.WriteLine("Hello, What´s your name?");
name= Console.ReadLine();
Console.WriteLine("Welcome" + name, "The Big Taco presents you its menu");
Console.Write("Asada Taco ........$28.50");
Console.Write("Chiken Taco .......$21.50");
Console.WriteLine("Veggie Taco ......$18.50");
Console.WriteLine("Chocolate chip cookie .....$12.00");
Console.WriteLine("Soda....$15.50");
Console.WriteLine("Water .....$11.00");
Console.WriteLine("How many Asada Tacos you want?");
nAsadaTaco= int.Parse(Console.ReadLine());
Console.WriteLine("How many Chiken Tacos you want?");
nChickenTaco= int.Parse(Console.ReadLine());
Console.WriteLine("how many Veggie Tacos you want?");
nVeggieTaco= int.Parse(Console.ReadLine());
Console.WriteLine("how many Chocolate chip cookies you want?");
nChocolatechipcookie= int.Parse(Console.ReadLine());
Console.WriteLine("how many Sodas you want?");
nSoda= int.Parse(Console.ReadLine());
Console.WriteLine("How many Waters you want?");
nWater= int.Parse(Console.ReadLine());
vpA= AsadaTaco * nAsadaTaco;
vpChi= ChickenTaco * nChickenTaco;
vpV= VeggieTaco * nVeggieTaco;
vpCho= Chocolatechipcookie * nChocolatechipcookie;
sub= vpA + vpChi + vpV + vpCho + vpS + vpW;
Console.WriteLine("subtotal= $?" + sub);
Console.WriteLine("iva= $" + IVAp);
Console.WriteLine("total= $" + totsl);
Console.WriteLine("thank you for coming to The Big Taco!!");
Console.WriteLine("You were attended by Ximens Galindo Ramos");