Spocoman

05. Square Frame

Nov 23rd, 2021 (edited)
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.62 KB | None | 0 0
  1. using System;
  2.  
  3. namespace SquareFrame
  4.  
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             int n = int.Parse(Console.ReadLine());
  11.  
  12.             for (int i = 0; i < n; i++)
  13.             {
  14.                 char angleChar = '|';
  15.                 if (i == 0 || i == n - 1)
  16.                 {
  17.                     angleChar = '+';
  18.                 }
  19.                 Console.Write(angleChar);
  20.                 for (int x = 0; x < n - 2; x++)
  21.                 {
  22.                     Console.Write(" -");
  23.                 }
  24.                 Console.WriteLine($" {angleChar}");
  25.             }
  26.         }
  27.     }
  28. }
Add Comment
Please, Sign In to add comment