题解 1098: 陶陶摘苹果

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1098: 陶陶摘苹果

摘要:```cpp #include using namespace std; int main() { int a[10],n,sum=0; for(int i=0;i>a[i……

1098: 陶陶摘苹果

摘要:解题思路:... ... ... ... ... ... ... ... ... ...注意事项:无参考代码:#include<iostream>using namespace std;int mai……

淘淘吃苹果问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){   int a[10];   int n,sum=0;   for(int i=0;i<10;i++){    ……

1098: 陶陶摘苹果

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int apple = 10; // 苹果数量int main() {……

陶陶摘苹果 题解

摘要:解题思路:就是判断有几个苹果的高度是小于或等于陶陶伸手的高度加上椅子的高度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[1……

陶陶摘苹果(C++简单题解)

摘要:解题思路:用淘淘的身高加上板凳的高度,就是淘淘能够到的高度,再和苹果的高度进行判断累加,最后输出;注意事项:加上板凳的30;参考代码: #includeusing namespace std;int ……

陶陶摘苹果之遍历数组

摘要:解题思路:    用最大高度加上30cm之后   遍历数组中的十个数字   能满足就计数加一  注意事项:参考代码:#include<bits/stdc++.h>using namespace std……