第20099题 单选题
完善C++代码,计算符合身高要求的可招募新成员人数

某小学男子篮球队招募新成员,要求加入球队的成员身高在135厘米以上(不含135厘米)。本次报名的人员有10人,他们的身高分别是125、127、136、134、137、138、126、135、140、145。完善以下代码,求出本次球队能够招募到新成员的人数:

#include <iostream>
using namespace std;

int main() {
  int arr[10] = {125, 127, 136, 134, 137, 138, 126, 135, 140, 145};

  int count = 0;
  for(int i=0; i<10; i++)
   __________________________ // 在此处填入代码

  cout << count << endl;
  return 0;
}
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析