using System; namespace Bajerek { class Program { static void Main(string[] args) { Console.ForegroundColor = ConsoleColor.Blue; Console.WriteLine("What's your name?"); string imie = Console.ReadLine(); Console.WriteLine("Hello, " + imie); Console.WriteLine("How old are you?(number)"); int wiek; bool sprawdzenie = int.TryParse(Console.ReadLine(), out wiek); if (wiek >= 18) { for (int i = 0; i < 10; i++) { Console.ForegroundColor = ConsoleColor.Cyan; Console.WriteLine("AMAZING"); } } else if (sprawdzenie == false) { Console.ForegroundColor = ConsoleColor.Red; Console.WriteLine("Nice man, you're potato"); Console.Write("Try one more: "); int wiek2; bool sprawdzenie2 = int.TryParse(Console.ReadLine(), out wiek2); if (wiek2 >= 18) { for (int i = 0; i < 3; i++) { Console.ForegroundColor = ConsoleColor.Cyan; Console.WriteLine("Take a beer homie!"); } } else { Console.WriteLine("Go away kiddy XD"); } } else { Console.WriteLine("Go away kiddy XD"); } Console.ReadLine(); } } }