Advertisement
Guest User

afs

a guest
Apr 22nd, 2018
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Program
  5. {
  6. public static void Main()
  7. {
  8. char a = '*';
  9. for(int i=0; i<10; i++)
  10. {
  11. Console.WriteLine("{0}",new string(a,i+1));
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement