Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConsoleApp5
- {
- class Program
- {
- static void Main(string[] args)
- {
- int r = 0;
- Console.BackgroundColor = ConsoleColor.DarkBlue;
- Console.Clear();
- Console.ForegroundColor = ConsoleColor.Red;
- string[,] kill =
- {
- {"###################### ######################"},
- {"################## ##################"},
- {"################ ################"},
- {"############### ##############"},
- {"############## ##############"},
- {"############## #############"},
- {"############## #############"},
- {"############# #############"},
- {"############# #############"},
- {"############## #### ### #############"},
- {"############### #### ## ## ### ##############"},
- {"################ ###### ###### ###############"},
- {"################ #### ##### ###############"},
- {"############# ############"},
- {"############## ### #############"},
- {"#################### #### ###################"},
- {"################ #### ##### #### ###############"},
- {"################ ## # ################"},
- {"################# # #### # # # # ################"},
- {"################# # # # # # ## #################"},
- {"################## ### ########## ##################"},
- {"## ############ # ## ## # # ########## ###"},
- {"## ########### # ## ######### # ###"},
- {"## ########## ####### ## ##"},
- {"# # ############ ######## ### #"},
- {"## ##### ########### ## ####### #### #"},
- {"#### ### ############### ## ##########"},
- {"########### ######## #############"},
- {"############### ##### #################"},
- {"#####################$ #####################"},
- {"################# ##### #################"},
- {" ####### ##### ##"},
- {"# # ############## ## #"},
- {"## ## ### ####################### ### # ##"},
- {"## ### ############################### #### ###"},
- {"## ## ##################################### # ###"},
- };
- for(int i = 0; i < kill.GetLength(0); i++)
- {
- for (int j = 0; j < kill.GetLength(1); j++)
- {
- r+=1;
- Console.SetCursorPosition(20,r);
- Console.Write(kill[i,j]+" ");
- }
- Console.WriteLine();
- }
- Console.SetCursorPosition(66, 66);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement