编写题解 1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,a[10]; for(i=0;i<10;i++) { scanf("…… 题解列表 2023年06月10日 0 点赞 0 评论 71 浏览 评分:0.0
我是菜狗。。。。。。。。。。。。 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10]; int b; for(int i=0;i<10;…… 题解列表 2023年05月12日 0 点赞 0 评论 86 浏览 评分:0.0
简单又实用 摘要:解题思路:在已知的条件下,我们只需要一步一步去解析然后分解就可以完成这道题啦注意事项:参考代码:#include<iostream>using namespace std;int main(){ …… 题解列表 2023年05月01日 0 点赞 0 评论 281 浏览 评分:9.9
1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using names…… 题解列表 2023年04月28日 0 点赞 0 评论 76 浏览 评分:0.0
编写题解 1098: 陶陶摘苹果 摘要:解题思路:这个程序首先使用 Scanner 类读取输入数据。在读取10个苹果的高度时,我们使用一个整型数组来存储它们。在读取陶陶能够伸手的最大高度时,我们直接使用一个整数来存储它。接下来,程序使用一个…… 题解列表 2023年04月24日 0 点赞 0 评论 247 浏览 评分:9.9
一维数组--2.陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int a[10],n,count=0; for(int i=0;i<10;i++){ …… 题解列表 2023年03月24日 0 点赞 0 评论 59 浏览 评分:0.0
陶陶摘苹果 摘要:解题思路:只要苹果距离地面小于或等于陶陶能达到的高度即表示能摘到注意事项:参考代码:L = list(map(int,input().split()))a = int(input())s = 0for…… 题解列表 2023年03月18日 0 点赞 0 评论 91 浏览 评分:0.0
陶陶摘苹果C++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a[10],sum=0; for…… 题解列表 2023年03月16日 0 点赞 0 评论 125 浏览 评分:0.0
1098:陶陶摘苹果(C++代码) 摘要:解题思路:简单题,算法难度较低注意事项:参考代码:#include <iostream>using namespace std;int main(){ int arr[10] = {0}; …… 题解列表 2023年03月04日 0 点赞 0 评论 75 浏览 评分:0.0
编写题解 1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split(" ")))b = int(input())b = b+30count = 0for i in range…… 题解列表 2023年02月21日 0 点赞 0 评论 97 浏览 评分:2.0