Advertisement
vallec

vij me kuv sum qk tr tr tarikat

Dec 17th, 2023
1,278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.26 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.     int n;
  5.     printf("Enter the size of the matrix: ");
  6.     scanf("%d", &n);
  7.     int matrix[n][n];
  8.  
  9.     printf("Enter the elements of the matrix:\n ");
  10.     for (int i = 0; i < n; i++) {
  11.         for (int j = 0; j < n; j++) {
  12.             printf("matrix[%d][%d]: ", i, j);
  13.             scanf("%d", &matrix[i][j]);
  14.         }
  15.     }
  16.  
  17.     printf("The matrix:\n");
  18.     for (int i = 0; i < n; i++) {
  19.         for (int j = 0; j < n; j++) {
  20.             printf("%d\t", matrix[i][j]);
  21.         }
  22.         printf("\n");
  23.     }
  24.  
  25.     int zeroElements = 0;
  26.  
  27.     for (int i = 1; i < n; i++) {
  28.         int diagonalSize = n - i;
  29.         if (diagonalSize > 1) {
  30.             for (int j = 0; j < diagonalSize; j++) {
  31.                 if(matrix[j][i + j] == 0) {
  32.                     zeroElements = zeroElements + 1;
  33.                 }
  34.             }
  35.         }
  36.     }
  37.  
  38.     for (int i = 1; i < n; i++) {
  39.         int diagonalSize = n - i;
  40.         if (diagonalSize > 1) {
  41.             for (int j = 0; j < diagonalSize; j++) {
  42.                 if(matrix[i + j][j] == 0) {
  43.                     zeroElements = zeroElements + 1;
  44.                 }
  45.             }
  46.         }
  47.     }
  48.    
  49.     printf("Elements with zero: %d", zeroElements);
  50.  
  51.     return 0;
  52. }
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement