编写题解 1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int i=0; ……
优质题解,回归真神的初始途径
摘要:解题思路:注意事项:参考代码:j=0l=list(map(int,input().split()))t=int(input())z=t+30for h in l: if h<=z: ……
1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define N 10int main(){ int a[N]; int point,sum=0; for(int ……
编写题解 1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){int a[10],tg,zd=0; for(int i=0;……
1098陶陶摘苹果(for循环遍历解决)
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a[15];//存苹果高度 int b;//存陶陶的高度 in……
1098: 陶陶摘苹果
摘要:参考代码:arr = list(map(int, input().split()))
h = int(input())
count = 0
for i in range(len(arr)):
……
C++ 编写题解 1098: 陶陶摘苹果
摘要:解题思路: 注意事项: 参考代码: #include<iostream>using namespace std;int main(){ int a[11],high,count=0; for (int……