public static void Main(string[] args)
Console.BackgroundColor = ConsoleColor.Gray;
Console.ForegroundColor = ConsoleColor.Black;
Console.Write("Pick a flag (G - Germany, R - Russia, N - Netherlands), or press Q to quit: ");
string country = Console.ReadLine().ToLower();
else Console.WriteLine("There is not a option for that flag.");
Console.BackgroundColor = ConsoleColor.Gray;
Console.ForegroundColor = ConsoleColor.Black;
Console.WriteLine("Press enter to continue:");
static void PrintGermanFlag()
Console.WriteLine("Flag of Germany:");
static void PrintGermanFlagBlack()
Console.BackgroundColor = ConsoleColor.Black;
static void PrintGermanFlagRed()
Console.BackgroundColor = ConsoleColor.Red;
static void PrintGermanFlagYellow()
Console.BackgroundColor = ConsoleColor.Yellow;
static void PrintRussianFlag()
Console.WriteLine("Flag of Russia:");
static void PrintRussianFlagWhite()
Console.BackgroundColor = ConsoleColor.White;
static void PrintRussianFlagBlue()
Console.BackgroundColor = ConsoleColor.Blue;
static void PrintRussianFlagRed()
Console.BackgroundColor = ConsoleColor.Red;
static void PrintNetherlandsFlag()
Console.WriteLine("Flag of the Netherlands:");
PrintNetherlandsFlagRed();
PrintNetherlandsFlagRed();
PrintNetherlandsFlagRed();
PrintNetherlandsFlagRed();
PrintNetherlandsFlagWhite();
PrintNetherlandsFlagWhite();
PrintNetherlandsFlagWhite();
PrintNetherlandsFlagWhite();
PrintNetherlandsFlagBlue();
PrintNetherlandsFlagBlue();
PrintNetherlandsFlagBlue();
PrintNetherlandsFlagBlue();
static void PrintNetherlandsFlagRed()
Console.BackgroundColor = ConsoleColor.Red;
static void PrintNetherlandsFlagWhite()
Console.BackgroundColor = ConsoleColor.White;
static void PrintNetherlandsFlagBlue()
Console.BackgroundColor = ConsoleColor.Blue;
static void QuitingProgram()
Console.WriteLine("Closing . . .");