Qrist

Armenian flag with *

Apr 10th, 2020
308
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1. using System;
  2.  
  3. class Program
  4. {
  5.     static void Main(string[] args)
  6.     {
  7.         for (int i = 1; i <= 10; i++)
  8.         {
  9.             Console.ForegroundColor = ConsoleColor.Red;
  10.             Console.WriteLine(new string('*',60));
  11.         }
  12.         for (int i = 1; i <= 10; i++)
  13.         {
  14.             Console.ForegroundColor = ConsoleColor.Blue;
  15.             Console.WriteLine(new string('*', 60));
  16.         }
  17.         for (int i = 1; i <= 10; i++)
  18.         {
  19.             Console.ForegroundColor = ConsoleColor.DarkYellow;
  20.             Console.WriteLine(new string('*', 60));
  21.         }
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment