Spocoman

01. Rectangle of 10 x 10 Stars

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