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 najgolem_broj = mat[i][0];
- for(int j = 0; j < kolona; j++) {
- if(mat[i][j] > najgolem_broj) {
- najgolem_broj = mat[i][j];
- }
- }
- for(int j = 0; j < kolona; j++) {
- if(mat[i][j] != najgolem_broj) {
- mat[i][j] = 0;
- }
- }
- }
- for(int i = 0; i < red; i++) {
- for(int j = 0; j < kolona; j++) {
- printf("%d ", mat[i][j]);
- }
- printf("\n");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement