编写题解 1098: 陶陶摘苹果 摘要:解题思路:定义count指针计数注意事项:参考代码:h1=list(map(int,input().split())) #苹果到地面高度,打包为整型数组 h2=int(input()) #陶陶把手伸…… 题解列表 2022年10月23日 0 点赞 0 评论 533 浏览 评分:9.6
1098——————陶陶摘苹果 摘要: n = list(map(int,input().split())) m = int(input())+30 s = 0 for i in n: …… 题解列表 2022年09月24日 0 点赞 0 评论 214 浏览 评分:0.0
1098: 陶陶摘苹果 摘要:```cpp #include using namespace std; int main() { int a[10],n,sum=0; for(int i=0;i>a[i…… 题解列表 2022年08月31日 0 点赞 0 评论 246 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:... ... ... ... ... ... ... ... ... ...注意事项:无参考代码:#include<iostream>using namespace std;int mai…… 题解列表 2022年08月18日 0 点赞 0 评论 392 浏览 评分:9.9
编写题解 1098: 陶陶摘苹果(c语言 看题解都比较麻烦,写一个基础简单的) 摘要:解题思路:正常的数组的输入与输出注意事项:不要被题目中的30厘米迷惑了,直接加上去就行参考代码:#include<stdio.h> int main(){ int a[10],i,n,c…… 题解列表 2022年08月15日 0 点赞 0 评论 532 浏览 评分:9.9
1098陶陶摘苹果应该有很多种解法 摘要:解题思路:注意事项:也可以试试看用多分支语句参考代码:s=0app=list(map(int,input().split()))hi=int(input())for i in app: if i…… 题解列表 2022年06月28日 0 点赞 0 评论 228 浏览 评分:0.0
淘淘吃苹果问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int n,sum=0; for(int i=0;i<10;i++){ …… 题解列表 2022年06月20日 0 点赞 0 评论 556 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std; const int apple = 10; // 苹果数量int main() {…… 题解列表 2022年05月08日 0 点赞 0 评论 106 浏览 评分:0.0
陶陶摘苹果 题解 摘要:解题思路:就是判断有几个苹果的高度是小于或等于陶陶伸手的高度加上椅子的高度。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[1…… 题解列表 2022年05月07日 0 点赞 0 评论 151 浏览 评分:0.0
陶陶摘苹果(C++简单题解) 摘要:解题思路:用淘淘的身高加上板凳的高度,就是淘淘能够到的高度,再和苹果的高度进行判断累加,最后输出;注意事项:加上板凳的30;参考代码: #includeusing namespace std;int …… 题解列表 2022年04月27日 0 点赞 0 评论 1345 浏览 评分:7.3