编写题解 1098: 陶陶摘苹果(c语言 看题解都比较麻烦,写一个基础简单的) 摘要:解题思路:正常的数组的输入与输出注意事项:不要被题目中的30厘米迷惑了,直接加上去就行参考代码:#include<stdio.h> int main(){ int a[10],i,n,c…… 题解列表 2022年08月15日 0 点赞 0 评论 571 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:... ... ... ... ... ... ... ... ... ...注意事项:无参考代码:#include<iostream>using namespace std;int mai…… 题解列表 2022年08月18日 0 点赞 0 评论 413 浏览 评分:9.9
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 评论 267 浏览 评分:9.9
1098——————陶陶摘苹果 摘要: n = list(map(int,input().split())) m = int(input())+30 s = 0 for i in n: …… 题解列表 2022年09月24日 1 点赞 0 评论 249 浏览 评分:0.0
编写题解 1098: 陶陶摘苹果 摘要:解题思路:定义count指针计数注意事项:参考代码:h1=list(map(int,input().split())) #苹果到地面高度,打包为整型数组 h2=int(input()) #陶陶把手伸…… 题解列表 2022年10月23日 0 点赞 0 评论 584 浏览 评分:9.6
1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n = 0, a[10] = {0}, ans = 0; for (int i = 0; …… 题解列表 2022年11月06日 0 点赞 0 评论 104 浏览 评分:0.0
遍历__C语言 摘要:##### 解题: 1. 一次只有 10 个苹果; 2. 30 的凳子高度 3. 手的长度 100-120; ```c #include int main() { in…… 题解列表 2022年11月10日 0 点赞 0 评论 346 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:加起来对比。注意事项:无参考代码:#include<bits/stdc++.h> using namespace std; int main() { long long a,…… 题解列表 2022年11月12日 0 点赞 0 评论 226 浏览 评分:9.9
陶陶摘苹果(简单版) 摘要:解题思路:直接循环加遍历就OK,没有那么难注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int b; int i; for…… 题解列表 2022年12月12日 0 点赞 0 评论 427 浏览 评分:6.0
陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],i,n,t=0; for(i=0;i<10;i++) { …… 题解列表 2022年12月18日 0 点赞 0 评论 332 浏览 评分:7.3