Advertisement
Josif_tepe

Untitled

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