提交时间:2025-07-26 10:24:53
运行 ID: 336256
#include<bits/stdc++.h> using namespace std; int main(){ int a[11], n, t, cnt=0; for(int i=0; i<10; i++){ cin>>a[i]; } cin>>t; t+=30; for(int i=0; i<10; i++){ if(a[i]<=t){ cnt++; } } cout<<cnt; return 0; }