为啥unaccepted,0分。在code block里面运行成功了啊明明

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

xnwygsw @ 2024-01-05 10:18:29

#include<iostream>
using namespace std;
int main()
{
    int height[10],Taotao,j;
    for(int i=0;i<10;i++)
    {
        cin>>height[i];
    }
    cout<<endl;
    cin>>Taotao;
    Taotao+=30;
    for(int i=0;i<10;i++)
    {
        if(Taotao>=height[i])
        {
            j++;
        }
    }
    cout<<j;
    return 0;
}

by HZHDCM @ 2024-01-05 10:55:48

@xnwygsw j没有赋值为0


by kunfan @ 2024-02-04 21:55:01

@xnwygsw 数组开小了,应该是height[11]


|