RXD's date Posted on 2019-06-22 | In acm , 做题记录 , 2017杭电多校赛 题目链接题意找出小于等于35的数字数量即可队友把我咕了好伤心… 12345678910111213141516#include<bits/stdc++.h>using namespace std;int main(){ int n; scanf("%d", &n); int cnt = 0; for (int i = 1; i <= n; i++) { int x; scanf("%d", &x); cnt += (x <= 35); } printf("%d\n", cnt); return 0;}