Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <ctype.h>
- int main() {
- int n, m;
- scanf("%d%d", &n, &m);
- int mat[n][m];
- for(int i = 0; i < n; i++) {
- for(int j = 0; j < m; j++) {
- scanf("%d", &mat[i][j]);
- }
- }
- int rezultat = 0;
- for(int i = 0; i < n; i++) {
- int zbir = 0;
- for(int j = 0; j < m - 1; j++) {
- zbir += mat[i][j];
- }
- if(zbir % mat[i][m - 1] == 0) {
- rezultat++;
- for(int j = 0; j < m; j++) {
- printf("%d ", mat[i][j]);
- }
- printf("\n");
- }
- }
- if(rezultat == 0) {
- printf("Ne e ispolnet nitu eden uslov\n");
- }
- else {
- printf("Uslovot go ispolnuvaat %d\n", rezultat);
- }
- }
- /*
- 4 4
- 20 1 4 5
- 50 0 12 11
- 3 2 2 7
- 1 11 1 2
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement