Advertisement
Spocoman

10. Diamond

Jan 3rd, 2022
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.80 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Diamond
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int num = int.Parse(Console.ReadLine());
  10.  
  11.             for (int i = 0; i < num / 2 + (num % 2); i++)
  12.             {
  13.                 string outDash = new string('-', (num - 1) / 2 - i);
  14.                 string border = "*";
  15.  
  16.                 if (i == 0)
  17.                 {
  18.                     if (num % 2 == 0)
  19.                     {
  20.                         border = "**";
  21.                     }
  22.                     Console.WriteLine(outDash + border + outDash);
  23.                 }
  24.                 else
  25.                 {
  26.                     string inDash = new string('-', i * 2);
  27.                     if (num % 2 == 1)
  28.                     {
  29.                         inDash = new string('-', i * 2 - 1);
  30.                     }
  31.                     Console.WriteLine(outDash + border + inDash + border + outDash);
  32.                 }
  33.             }
  34.        
  35.             for (int i = num / 2 - (1 + (num - 1) % 2); i >= 0; i--)
  36.             {
  37.                 string outDash = new string('-', (num - 1) / 2 - i);
  38.                 string border = "*";
  39.  
  40.                 if (i == 0)
  41.                 {
  42.                     if (num % 2 == 0)
  43.                     {
  44.                         border = "**";
  45.                     }
  46.                     Console.WriteLine(outDash + border + outDash);
  47.                 }
  48.                 else
  49.                 {
  50.                     string inDash = new string('-', i * 2);
  51.                     if (num % 2 == 1)
  52.                     {
  53.                         inDash = new string('-', i * 2 - 1);
  54.                     }
  55.                     Console.WriteLine(outDash + border + inDash + border + outDash);
  56.                 }
  57.             }
  58.         }
  59.     }
  60. }
  61.  
  62.  
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement