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