Advertisement
Josif_tepe

Untitled

Nov 5th, 2021
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.43 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(){
  4.     int n;
  5.     scanf("%d", &n);
  6.    
  7.     for(int i = 1; i <= n; i++) {
  8.         for(int j = 1; j <= n; j++) {
  9.             printf("%d %d\n", i, j);
  10.         }
  11.     }
  12.    
  13.     return 0;
  14. }
  15. // n = 5
  16. // 1 1
  17. // 1 2
  18. // 1 3
  19. // 1 4
  20. // 1 5
  21. // 2 1
  22. // 2 2
  23. // 2 3
  24. // 2 4
  25. // 2 5
  26. // 3 1
  27. // 3 2
  28. // 3 3
  29. // 3 4
  30. // 3 5
  31. // 4 1
  32. // 4 2
  33. // 4 3
  34. // 4 4
  35. // 4 5
  36. // 5 1
  37. // 5 2
  38. // 5 3
  39. // 5 4
  40. // 5 5
  41.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement