解题思路:
枚举苹果,判断陶陶的身高加上凳子的高度是否大于等于苹果的高度。
代码:
#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; }