Advertisement
Guest User

Untitled

a guest
Jun 11th, 2016
614
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. using System;
  2.  
  3. public class Practice
  4. {
  5.     public static void Main()
  6.     {
  7.         for (int i = 1; i < 11; i++)
  8.         {
  9.             Console.WriteLine(new string('*',i));
  10.         }
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement