Advertisement
Josif_tepe

Untitled

Dec 30th, 2023
787
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.45 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3. int main() {
  4.     int n;
  5.     cin >> n;
  6.    
  7.     int niza[n];
  8.     for(int i = 0; i < n; i++) {
  9.         cin >> niza[i];
  10.     }
  11.     int najmal = niza[0];
  12.     int reden_broj = 1;
  13.    
  14.     for(int i = 0; i < n; i++) {
  15.         if(niza[i] < najmal) {
  16.             najmal = niza[i];
  17.             reden_broj = i + 1;
  18.         }
  19.     }
  20.     cout << reden_broj << " " << najmal << endl;
  21.  
  22.    
  23.     return 0;
  24. }
  25.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement