Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <algorithm>
- #include <vector>
- #include <stack>
- using namespace std;
- int main()
- {
- int n;
- cin >> n;
- int niza[n];
- for(int i = 0; i < n; i++) {
- cin >> niza[i];
- }
- sort(niza, niza + n);
- int indeks = upper_bound(niza, niza + n, 30) - niza;
- cout << indeks << endl;
- return 0;
- }
- /*
- 5
- 10 20 30 30 50
- ni vraka indeks 4
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement