Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program
  4. {
  5. public static void Main()
  6. {
  7. int n = int.Parse(Console.ReadLine());
  8.  
  9. for (int row =0; row<=n ; row++)
  10. {
  11. var spaces = new String(' ',n-row);
  12. var stars = new String('*',row);
  13.  
  14. Console.Write(spaces);
  15. Console.Write(stars);
  16. Console.Write(" | ");
  17. Console.Write(stars);
  18. Console.Write(spaces);
  19. Console.WriteLine();
  20. }
  21.  
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement