public static void Main()
int paq, com1,com2,com3,com4,com5;
Console.WriteLine(" ----------> LA JOYA RESTAURANT <---------- " );
Console.WriteLine(" WELCOME ");
Console.WriteLine(" MENU ");
Console.WriteLine("----------------------------------------------------------------------------------");
Console.WriteLine("|Combo 1-| Basic burguer ๐ $30 - Coffee $15 โ -Flan ๐ฎ $20");
Console.WriteLine("|Combo 2-| special burguer ๐ $45 - Soda $20 ๐ฅค -Ice cream ๐ฆ $18");
Console.WriteLine("|Combo 3-| French Fries ๐ $20 - Licuado $30 ๐จ -Cake ๐ฐ $22");
Console.WriteLine("|Combo 4-| Tacos ๐ฎ $40 - Favlor water $15 ๐ง -Cookies ๐ช $18");
Console.WriteLine("|Combo 5-| Torta ๐ฅช $25 - Water bottle $10๐พ Pay ๐ฅง $18");
Console.WriteLine("----------------------------------------------------------------------------------");
Console.WriteLine(" Please enter the combo you want:");
paq = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("You chose combo 1, the total to pay is ${0}, come back soon",com1);
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("You chose combo 2, the total to pay is ${0}, come back soon",com2);
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("You chose combo 3, the total to pay is ${0},come back soon",com3);
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("You chose combo 4, the total to pay is ${0}, come back soon",com4);
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("You chose combo 5, the total to pay is ${0}, come back soon",com5);
Console.WriteLine("----------------------------------------------------------");
Console.WriteLine("You have not selected a correct option");
Console.WriteLine("Do you want to enter another menu? y / n");
Console.WriteLine("if enter n to know the total sale of the day");
Console.WriteLine("---------------------------------------------------");
}while (s1 == "y" || s1 == "Y" );
Console.WriteLine("the total sale of the day is ${0}, good day",day);