题解 1098: 陶陶摘苹果

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

筛选

1098: 陶陶摘苹果题解

摘要:解题思路:这题很简单,我们需要一个数组a[10]来统计每个苹果距离地面的高度,然后判断陶陶把手伸直的时候能够达到的最大高度加上板凳的高度30是否大于每个苹果距离地面的高度,如果大于,计数器就自加,输出……

1098: 陶陶摘苹果

摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using names……

一维数组--2.陶陶摘苹果

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

淘淘摘苹果

摘要:解题思路:注意事项:参考代码:apple=list(map(int,input().split()))high=eval(input())high_all=high+30n=0for i in ran……

番1 陶陶摘苹果 寄存器优化(C语言代码)

摘要:解题思路:        运用一个数组把10个苹果的高度存起来,再定义一个变量存起来明明的能够到的高度,遍历数组把明明能够到的高度与苹果高度进行比较,统计起来能够得到的数组个数.        为了少……

陶陶摘苹果 (C语言代码)

摘要:解题思路:按题目输入,然后循环比较,符合条件count++参考代码:#include <stdio.h>int main(){    int a[10],i,count=0,TT;     for(i……

1098: 陶陶摘苹果 C语言

摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include int main() { int apple_hight[10] = {0};//……

1098: 陶陶摘苹果

摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split()))b=int(input())+30c=0for i in a:    if i<=b:        c+……