解题思路:

枚举苹果,判断陶陶的身高加上凳子的高度是否大于等于苹果的高度。

代码:

#include <iostream>
#include <algorithm>
using namespace std;
 
int main()
{
    int a[10];
    for (int i = 0; i < 10; i++) cin >> a[i];
 
    int height;
    cin >> height;
    height += 30;
 
    int res = 0;
    for (int i = 0; i < 10; i++)
        if (a[i] <= height)
            res++;
 
    cout << res << endl;
 
    return 0;
}


另外,牛客暑期NOIP真题班限时免费报名
报名链接:https://www.nowcoder.com/courses/cover/live/248
报名优惠券:DCYxdCJ