Advertisement
AJMitev

TriangleOf55Stars

Jan 15th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. using System;
  2.  
  3. namespace TriangleOf55Stars
  4. {
  5. class TriangleOf55Stars
  6. {
  7. static void Main()
  8. {
  9.  
  10. for (int n = 1 ; n <= 10; n++)
  11. {
  12. Console.WriteLine(new string('*', n));
  13. }
  14. }
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement