Advertisement
slls1

Untitled

Jan 17th, 2017
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace Triangle_of_55_Stars
  5. {
  6.     class Program
  7.     {
  8.         static void Main()
  9.         {
  10.             for (int row = 1; row <=10; row++)
  11.             {
  12.                 for (int col = 0; col <row ; col++)
  13.                 {
  14.                     Console.Write("*");
  15.                 }
  16.                 Console.WriteLine();
  17.             }
  18.         }
  19.     }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement