Advertisement
Josif_tepe

Untitled

Jan 5th, 2025
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6.     int n, m;
  7.     cin >> n >> m;
  8.    
  9.     int mat[n][m];
  10.     for(int i = 0; i < n; i++) {
  11.         for(int j = 0; j < m; j++) {
  12.             cin >> mat[i][j];
  13.         }
  14.     }
  15.    
  16.     for(int z = 2; z <= n; z++) {
  17.         if(z - 1 < n and z - 1 < m) {
  18.             int zbir = 0;
  19.             for(int i = z - 1; i >= 0; i--) {
  20.                 zbir += mat[i][0];
  21.                 zbir += mat[i][z - 1];
  22.             }
  23.             int j = 1;
  24.             for(int i = 1; i < z - 1; i++) {
  25.                 zbir += mat[i][j];
  26.                 j++;
  27.             }
  28.             cout << zbir << endl;
  29.         }
  30.     }
  31.    
  32.     return 0;
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement