Advertisement
Josif_tepe

Untitled

Dec 30th, 2023
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.37 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.    
  12.     int najgolem = niza[0];
  13.     for(int i = 0; i < n; i++) {
  14.         if(niza[i] > najgolem) {
  15.             najgolem = niza[i];
  16.         }
  17.     }
  18.     cout << najgolem << endl;
  19.     return 0;
  20. }
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement