Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main() {
- int red, kolona;
- scanf("%d%d", &red, &kolona);
- int mat[red][kolona];
- for(int i = 0; i < red; i++) {
- for(int j = 0; j < kolona; j++) {
- scanf("%d", &mat[i][j]);
- }
- }
- for(int i = 0; i < red; i++) {
- int zbir = 0;
- for(int j = 0; j < kolona; j++) {
- zbir += mat[i][j];
- }
- printf("%d\n", zbir);
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement