小白刚学,麻烦的一批,多指教。

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

LW417 @ 2017-10-24 19:14:49

#include<cstdio>
#include<iostream>
#include<cmath>
using namespace std;
const int n=11;
int main()
{
    int a[n];
    int c[11];
    for(int i=1;i<=10;i++)
    {
    cin>>a[i];
    c[i]=a[i];
            //不要cout<<endl;会卡行的。坑啊, 
    }
    int b,f=0;
    cin>>b;
    for(int i=1;i<=10;i++)
    {
        if((30+b)>=c[i])
        f++;
    }
    cout<<f;
    return 0;
}

by hjfzzm @ 2017-10-24 19:16:21

目测没错啊......


by kdlkswb @ 2017-10-24 19:30:43

这。。这个AC了啊。。。你要看什么


|