解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
const int apple = 10; // 苹果数量
int main() {
int height[apple] = { 0 }; // 存储苹果高度
for (int i = 0; i < apple; i++) {
cin >> height[i];
}
int arm = 0; // 臂展
cin >> arm;
arm += 30; // 最大能达到高度
int res = 0; // 能摘到的数量
for (int i = 0; i < apple; i++) {
if (height[i] <= arm) {
res++;
}
}
cout << res << endl;
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.1 (C语言代码)浏览:686 |
计算质因子 (C++代码)浏览:1825 |
C语言程序设计教程(第三版)课后习题5.6 (C语言代码)浏览:909 |
剪刀石头布 (C语言代码)浏览:1792 |
哥德巴赫曾猜测 (C语言代码)浏览:2562 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:268 |
C语言训练-亲密数 (C语言代码)浏览:697 |
打印十字图 (C语言代码)浏览:2820 |
Hello, world! (C语言代码)浏览:766 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:1100 |