1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=int(input())+30c=0for i in a: if i<=b: c+……
1098: 陶陶摘苹果
摘要:##1098: 陶陶摘苹果
```c
#include
int main()
{
int a[10],n,j=0;
for(int i=0;i……
陶陶摘苹果(简单版)
摘要:解题思路:直接循环加遍历就OK,没有那么难注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int b; int i; for……
1098: 陶陶摘苹果
摘要:解题思路:加起来对比。注意事项:无参考代码:#include<bits/stdc++.h>
using namespace std;
int main()
{
long long a,……
1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int n = 0, a[10] = {0}, ans = 0; for (int i = 0; ……
编写题解 1098: 陶陶摘苹果
摘要:解题思路:定义count指针计数注意事项:参考代码:h1=list(map(int,input().split())) #苹果到地面高度,打包为整型数组
h2=int(input()) #陶陶把手伸……