Advertisement
Josif_tepe

Untitled

Jan 25th, 2025
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.67 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4.  
  5. int main()
  6. {
  7.     int n, m;
  8.     cin >> n >> m;
  9.    
  10.     int mat[n][m];
  11.    
  12.     for(int i = 0; i < n; i++) {
  13.         for(int j = 0; j < m; j++) {
  14.             cin >> mat[i][j];
  15.         }
  16.     }
  17.    
  18.     for(int i = 0; i < n; i++) {
  19.         int najgolem = mat[i][0];
  20.         int najmal = mat[i][0];
  21.        
  22.         for(int j = 0; j < m; j++) {
  23.             if(mat[i][j] > najgolem) {
  24.                 najgolem = mat[i][j];
  25.             }
  26.             if(mat[i][j] < najmal) {
  27.                 najmal = mat[i][j];
  28.             }
  29.         }
  30.         cout << najmal << " " << najgolem << endl;
  31.     }
  32.    
  33.    
  34.     return 0;
  35. }
  36.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement