题解 1098: 陶陶摘苹果

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

筛选

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

摘要:解题思路:注意事项:参考代码:#include "stdio.h"int main(){ int x,a[10],i,j,k=0; for(i=0;i<=10;) { scanf("%d",&x);……

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

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

Manchester- 陶陶摘苹果

摘要:解题思路:定义一个长度为11的数组;用while(scanf("%d",&a[i])!=EOF)语句存入数;当存了11个数时,求前十个数中,小于等于最后一个数+30的数的个数;输出所求的的个数;注意事……

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

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

陶陶摘苹果 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[10],i,j,n,w=0; for(i=0;i<10;i……

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

摘要:解题思路:注意事项:参考代码:#include<stdio.h>void count(int arr[11]);int main(){    int arr[11],i=0;    while(sca……

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

摘要:解题思路:注意事项:参考代码:/*陶陶家的院子里有一棵苹果树,每到秋天树上就会结出10个苹果。苹果成熟的时候,陶陶就会跑去摘苹果。陶陶有个30厘米高的板凳,当她不能直接用手摘到苹果的时候,就会踩到板凳……