Advertisement
ralichka

*

Jun 7th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.36 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConsoleApp8
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             for(int i=1; i<=10; i++)
  10.             {
  11.                 for (int j=1; j<=i; j++)
  12.                 {
  13.                     Console.Write("*");
  14.                 }
  15.                 Console.WriteLine();
  16.             }
  17.         }
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement