请大神指教一下

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

zhanghongye @ 2019-09-30 17:34:07

我的程序只有20分,求那些数据通过不了。 附程序

include<cstdio>

int apple[10];

int main()

{

int high;
for(int i=0;i<=9;++i)
{
    scanf("%d",&apple[i]);
}
scanf("%d",high);
int t=0;
for(int j=0;j<=9;++j)
{
    if(apple[j]>=(high+30))
        t++;
}
printf("%d",t);
return 0;

}


by james1BadCreeper @ 2019-09-30 17:39:03

apple[j]>=(high+30)

?

\leq


by zhanghongye @ 2019-09-30 17:41:54

好吧没看清


by 览遍千秋 @ 2019-09-30 18:38:42

希丰现?用md


|