Advertisement
Josif_tepe

Untitled

May 13th, 2021
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.50 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. int main() {
  5.     int n, m;
  6.     scanf("%d%d", &n, &m);
  7.     int zbir = 0;
  8.     int matrica[n][m];
  9.     for(int i = 0; i < n; i++) {
  10.         for(int j = 0; j < m; j++) {
  11.             scanf("%d", &matrica[i][j]);
  12.         }
  13.     }
  14.    
  15.     for(int i = 0; i < n; i++) {
  16.         zbir = 0; // zacuvaj go zbirot za sekoj red
  17.         for(int j = 0; j < m; j++) {
  18.             zbir += matrica[i][j];
  19.         }
  20.         printf("%d\n", zbir);
  21.     }
  22.     return 0;
  23. }
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement