Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. using System;
  2. namespace ConsoleApp2
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. Console.WriteLine("Podaj liczbe wierszy: ");
  9. int wiersze = int.Parse(Console.ReadLine());
  10. int licznik = wiersze;
  11. for(int i = 0; i < wiersze; i++)
  12. {
  13. for(int j = 1; j <= wiersze; j++)
  14. {
  15. if(j >= licznik) Console.Write("*");
  16. else Console.Write(" ");
  17. }
  18. licznik--;
  19. Console.WriteLine();
  20. }
  21.  
  22. }
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement