Advertisement
Spocoman

Skyscraper

Sep 25th, 2023 (edited)
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.24 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Skyscraper
  4. {
  5.     internal class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.  
  11.             for (int row = 0; row < n - 3; row++)
  12.             {
  13.                 Console.WriteLine("{0}|{0}", new string(' ', n));
  14.             }
  15.  
  16.             Console.WriteLine("{0}_|_{0}", new string(' ', n - 1));
  17.  
  18.             for (int row = 0; row < n - 3; row++)
  19.             {
  20.                 Console.WriteLine("{0}|-|{0}", new string(' ', n - 1));
  21.             }
  22.  
  23.             Console.WriteLine("{0}_|-|_{0}", new string(' ', n - 2));
  24.  
  25.             for (int row = 0; row < n - 3; row++)
  26.             {
  27.                 Console.WriteLine("{0}|***|{0}", new string(' ', n - 2));
  28.             }
  29.  
  30.             Console.WriteLine(" {0}|***|{0} ", new string('_', n - 3));
  31.  
  32.             for (int row = 0; row < n * 4 - 1; row++)
  33.             {
  34.                 Console.WriteLine(" {0}---{0} ", new string('|', n - 2));
  35.             }
  36.  
  37.             Console.WriteLine("_{0}---{0}_", new string('|', n - 2));
  38.  
  39.             for (int row = 0; row < n - 2; row++)
  40.             {
  41.                 Console.WriteLine("{0}", new string('|', n * 2 + 1));
  42.             }
  43.         }
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement