1 条题解
-
0房佳坤 LV 7 @ 2021-02-15 20:55:38
#include <iostream> using namespace std; int main() { int apple[11],i,h,ans=0; for(int i=1;i<=10;i++)cin>>apple[i]; cin>>h; for(i=1;i<=10;i++) if(h+30>=apple[i])ans++; cout<<ans<<endl; return 0; }
本水题居然没有题解?
- 1