Advertisement
Josif_tepe

Untitled

Apr 3rd, 2024
588
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 red, kolona;
  5.     scanf("%d%d", &red, &kolona);
  6.  
  7.     int mat[red][kolona];
  8.  
  9.     for(int i = 0; i < red; i++) {
  10.         for(int j = 0; j < kolona; j++) {
  11.             scanf("%d", &mat[i][j]);
  12.         }
  13.     }
  14.    
  15.     for(int i = 0; i < red; i++) {
  16.         for(int j = 0; j < kolona; j++) {
  17.             printf("%d ", mat[i][j]);
  18.         }
  19.         printf("\n");
  20.     }
  21.  
  22.     return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement