陶陶摘苹果(C语言解析) 摘要:解题思路:通过将10个苹果的高度存放入一个数组,使其数据分别与陶陶所能过够到的最大高度(加上凳子高度)进行比较,从而得出其所能摘到的苹果数。注意事项:①注意sum的初始化!②注意在给数组的元素输入数据…… 题解列表 2023年12月15日 0 点赞 3 评论 624 浏览 评分:9.9
遍历__C语言 摘要:##### 解题: 1. 一次只有 10 个苹果; 2. 30 的凳子高度 3. 手的长度 100-120; ```c #include int main() { in…… 题解列表 2022年11月10日 0 点赞 0 评论 273 浏览 评分:9.9
逆天解法,包得吃的。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[10]={0},a,i,b=0; for(i=0;i<10;i++) { scanf("%d"…… 题解列表 2024年10月23日 0 点赞 0 评论 130 浏览 评分:9.9
编写题解 1098: 陶陶摘苹果 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i=0; …… 题解列表 2024年08月06日 0 点赞 0 评论 158 浏览 评分:9.9
编写题解 1098: 陶陶摘苹果(c语言 看题解都比较麻烦,写一个基础简单的) 摘要:解题思路:正常的数组的输入与输出注意事项:不要被题目中的30厘米迷惑了,直接加上去就行参考代码:#include<stdio.h> int main(){ int a[10],i,n,c…… 题解列表 2022年08月15日 0 点赞 0 评论 470 浏览 评分:9.9
淘淘吃苹果问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10]; int n,sum=0; for(int i=0;i<10;i++){ …… 题解列表 2022年06月20日 0 点赞 0 评论 519 浏览 评分:9.9
优质题解 Manchester- 陶陶摘苹果 摘要:解题思路:定义一个长度为11的数组;用while(scanf("%d",&a[i])!=EOF)语句存入数;当存了11个数时,求前十个数中,小于等于最后一个数+30的数的个数;输出所求的的个数;注意事…… 题解列表 2017年11月29日 16 点赞 2 评论 5157 浏览 评分:9.4
陶陶摘苹果 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main(){ int x,a[10],i,j,k=0; for(i=0;i<=10;) { scanf("%d",&x);…… 题解列表 2017年08月13日 2 点赞 2 评论 1693 浏览 评分:9.0
陶陶摘苹果 (C语言代码) 摘要:解题思路:先循环输入10个数,设置一个计数变量,全局变量用g_count,局部变量用l_count。具体见代码注释注意事项:参考代码:#include <stdio.h> int main() {…… 题解列表 2018年12月25日 2 点赞 0 评论 358 浏览 评分:8.0
陶陶摘苹果-题解(C语言代码) 摘要:本题比较简单,我的思路是把苹果的高度存入数组中,如果高度符合那么变量sum+1 最后输出sum即可; 一定要注意题目说的手指碰到苹果就掉下; #include int main() { …… 题解列表 2019年07月20日 0 点赞 0 评论 715 浏览 评分:7.8