:



1


#include <bits/stdc++.h>
using namespace std;

int t;

int main(){
    cin >> t;
    int num = 0;
    for (int i = 1;i <= t;i++){
        int x;
        cin >> x;
        if (x<=35)
            num++;
    }
    cout << num << endl;
    return 0;
}

相关文章:

  • 2021-04-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-09
  • 2022-02-13
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
相关资源
相似解决方案