陶陶摘苹果(新手也能看懂)
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int count=0; int arr[10]; for(int i=0;i<10;i++) { scan……
1098: 陶陶摘苹果
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[100],b=0,c=10,d=0,i; for( i=0;i<c;i++) { ……
逆天解法,包得吃的。
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int arr[10]={0},a,i,b=0; for(i=0;i<10;i++) { scanf("%d"……
python7行解决
摘要:解题思路:注意事项:参考代码:a = [int(i) for i in input().split()]b = int(input())c = 0for i in a: if b + 30 >=……
旧物有情 # 陶陶摘苹果 阅读理解,读懂了就很简单!
摘要:```
#include
using namespace std;
const int N =15;
int a[N];
int main(){
//读取10个苹果到达地面的……
python 1098: 陶陶摘苹果
摘要:**没什么好注意的,按题目要求来**
```python
a = list(map(int,input().strip().split()))
b = int(input().strip()……
编写题解 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: ……