Advertisement
dmitryEfremov

Untitled

Apr 13th, 2020
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.42 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace ConsoleApp5
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.             int r = 0;
  11.             Console.BackgroundColor = ConsoleColor.DarkBlue;
  12.             Console.Clear();
  13.             Console.ForegroundColor = ConsoleColor.Red;
  14.             string[,] kill =
  15.             {
  16.                 {"######################        ######################"},
  17.                 {"##################                ##################"},
  18.                 {"################                    ################"},
  19.                 {"###############                       ##############"},
  20.                 {"##############                        ##############"},
  21.                 {"##############                         #############"},
  22.                 {"##############                         #############"},
  23.                 {"#############                          #############"},
  24.                 {"#############                          #############"},
  25.                 {"##############   ####            ###   #############"},
  26.                 {"###############   #### ##   ##  ###   ##############"},
  27.                 {"################   ######   ######   ###############"},
  28.                 {"################     ####   #####    ###############"},
  29.                 {"#############                           ############"},
  30.                 {"##############           ###           #############"},
  31.                 {"####################     ####    ###################"},
  32.                 {"################ ####   #####   #### ###############"},
  33.                 {"################  ##             #  ################"},
  34.                 {"#################  # #### # # #  #  ################"},
  35.                 {"#################  # #    # # # ## #################"},
  36.                 {"################## ### ########## ##################"},
  37.                 {"##     ############  # ## ## # #  ##########     ###"},
  38.                 {"##      ###########     # ##      #########   #  ###"},
  39.                 {"##       ##########               #######     ##  ##"},
  40.                 {"#  #      ############         ########        ### #"},
  41.                 {"## #####     ########### ##  #######     ####      #"},
  42.                 {"####     ###      ###############     ##  ##########"},
  43.                 {"###########           ########         #############"},
  44.                 {"###############      #####         #################"},
  45.                 {"#####################$         #####################"},
  46.                 {"#################          #####   #################"},
  47.                 {"                       #######           #####    ##"},
  48.                 {"#            #     ##############     ##           #"},
  49.                 {"##  ##   ###   #######################   ###   #  ##"},
  50.                 {"##    ### ###############################   #### ###"},
  51.                 {"##  ## #####################################  #  ###"},
  52.             };
  53.             for(int i = 0; i < kill.GetLength(0); i++)
  54.             {
  55.                 for (int j = 0; j < kill.GetLength(1); j++)
  56.                 {
  57.                     r+=1;
  58.                     Console.SetCursorPosition(20,r);
  59.                     Console.Write(kill[i,j]+" ");
  60.                 }                
  61.                 Console.WriteLine();
  62.             }
  63.             Console.SetCursorPosition(66, 66);
  64.         }
  65.  
  66.     }
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement