ajreuri23

שאלה 6

Oct 30th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. 6.1) static void Main(string[] args)
  2. {
  3. int i, j;
  4. for (i = 1; i <=5; i++)
  5. {
  6. for (j = 1; j <=i; j++)
  7. {
  8. Console.Write(i);
  9. }
  10. Console.WriteLine("");
  11. }
  12.  
  13.  
  14. 6.2) static void Main(string[] args)
  15. {
  16. int i, j;
  17. for (i = 5; i >=1; i--)
  18. {
  19. for (j = 1; j <=i; j++)
  20. {
  21. Console.Write(j);
  22. }
  23. Console.WriteLine("");
  24. }
Add Comment
Please, Sign In to add comment