Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main(){
- int n;
- scanf("%d", &n);
- for(int i = 1; i <= n; i++) {
- for(int j = 1; j <= n; j++) {
- printf("%d %d\n", i, j);
- }
- }
- return 0;
- }
- // n = 5
- // 1 1
- // 1 2
- // 1 3
- // 1 4
- // 1 5
- // 2 1
- // 2 2
- // 2 3
- // 2 4
- // 2 5
- // 3 1
- // 3 2
- // 3 3
- // 3 4
- // 3 5
- // 4 1
- // 4 2
- // 4 3
- // 4 4
- // 4 5
- // 5 1
- // 5 2
- // 5 3
- // 5 4
- // 5 5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement