public static void Main()
Console.WriteLine("Hello and welcome to the nr. 1 Coffeeplace in the digital world.");
Console.WriteLine("Please place your coffeesize-order. Enter 1,2 or 3 for 1 - Small, 2 - Medium, 3 - Large.");
Int32.TryParse(Console.ReadLine(), out result);
Console.WriteLine("Your input was invalid. Please enter 1, 2 or 3.");
Console.WriteLine("Do you want to order another coffee? - Yes or No?");
string Decision = Console.ReadLine();
switch (Decision.ToUpper())
Console.WriteLine("Your input was invalid. Please enter Yes or No.");
Console.WriteLine("Bill amount is {0} dollars. How would you like to pay? Please enter Cash or Card.", TotalCost);
string Payment = Console.ReadLine();
switch (Payment.ToUpper())
Console.WriteLine("Thank you very much. Here is your change. Have a nice day!");
Console.WriteLine("Thank you. Come again!");
Console.WriteLine("Your input was invalid. Please enter Cash or Card.");