Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <vector>
- using namespace std;
- int main() {
- int n, cnt=0;
- cin >> n;
- vector <int> a(n);
- for (int i = 0; i<n; i++) {
- cin >> a[i];
- }
- for (auto c : a) {
- if (c>0) {
- cnt++;
- }
- } cout << cnt;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement