题解 1098: 陶陶摘苹果

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

筛选

陶陶摘苹果C++

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){     int n,a[10],sum=0;     for……

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

摘要:解题思路:简单题,算法难度较低注意事项:参考代码:#include <iostream>using namespace std;int main(){    int arr[10] = {0};   ……

编写题解 1098: 陶陶摘苹果

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

陶陶摘苹果

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

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……

陶陶摘苹果

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