想请教一下大佬为什么只有10分

P1046 [NOIP2005 普及组] 陶陶摘苹果

Fruitwheat @ 2019-10-22 19:09:15

#include <iostream>
#include <cstdio>
#include <cmath>
using namespace std;

int main(void){
    int a[10],h,i,n=0,j;
    for(i=0;i<=9;i++){
        cin>>a[i];
    }
    cin>>h;
    for(j=0;i<=9;j++){
        if(a[j]<=(h+30)){
            n++;
        }
    }
    cout<<n;
    return 0;
}

绝望


by therehello @ 2019-10-22 19:16:04

。。看不出来


by 诱宵美⑨ @ 2019-10-22 19:21:42

for(j=0;i<=9;j++){

i<=9

=。。。


by 诱宵美⑨ @ 2019-10-22 19:22:09

j,i,j

太明显了


by Fruitwheat @ 2019-10-22 19:24:25

@诱宵美九 ///

谢谢大佬

是我瞎了


by Fruitwheat @ 2019-10-22 19:24:54

@therehello 大佬就当无事发生


by clever者 @ 2019-10-22 19:26:59

是啊,大佬为什么只有10分呢?

这句话正确的断句:

想请教一下 / 大佬(发帖人)为什么只有10分


by Fruitwheat @ 2019-10-22 19:28:24

@clever者 yamero

这样会被集火的


by fangjiacheng @ 2019-11-05 20:08:53

#include<iostream>
using namespace std;
int main()
{
int a[11];
int b,num=0;
for(int i=1;i<=10;i++)
cin>>a[i];
cin>>b;
b+=50;
for(int i=1;i<=10;i++)
if(a[i]<=b)num++;
cout<<num;
return 0;
}

额额其实没什么好错的


|