比赛 | 十一中校庆欢乐赛 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 陶陶摘苹果 | 最终得分 | 100 |
用户昵称 | 岳帛翰 | 运行时间 | 0.012 s |
代码语言 | C++ | 内存使用 | 0.28 MiB |
提交时间 | 2014-10-23 18:10:50 | ||
#include<iostream> #include<cstdio> #include<cmath> #include<algorithm> using namespace std; short apple[15]; int main() { freopen("apple.in","r",stdin); freopen("apple.out","w",stdout); for(short i=1;i<=10;i++) { cin>>apple[i]; } short h,count=0; cin>>h; h+=30; for(short i=1;i<=10;i++) { if(h>=apple[i]) { count++; } } cout<<count; return 0; }