Spocoman

03. Square of Stars

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