Advertisement
Josif_tepe

Untitled

Dec 26th, 2022
1,175
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.81 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <ctype.h>
  5.  
  6. int main(int argc, const char * argv[]) {
  7.     int n;
  8.     scanf("%d", &n);
  9.    
  10.     int mat[n][n];
  11.     int mat2[n][n];
  12.    
  13.     for(int i = 0; i < n; i++) {
  14.         for(int j = 0; j < n; j++) {
  15.             scanf("%d", &mat[i][j]);
  16.             mat2[i][j] = mat[i][j];
  17.         }
  18.     }
  19.     for(int i = 0; i < n; i++) {
  20.         for(int j = 0; j < n; j++) {
  21.             if(i < j && j < n - i - 1) {
  22.                 mat[i][j] = 0;
  23.             }
  24.         }
  25.     }
  26.    
  27.     for(int i = 0; i < n; i++) {
  28.         for(int j = 0; j < n; j++) {
  29.             printf("%d ", mat[i][j]);
  30.         }
  31.         printf("\n");
  32.     }
  33.    
  34.    
  35.     return 0;
  36. }
  37. /*
  38.  5
  39.  1 17 2 5 13
  40.  2 5 -2 -1 2
  41.  15 12 1 2 3
  42.  2 -2 -33 23 8
  43.  9 1 2 3 4
  44.  
  45.  **/
  46.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement