1 条题解

  • 0
    @ 2019-06-12 21:13:22

    #include <iostream>
    using namespace std;
    int main(){
    int apple[10];
    int tao;
    for(int i = 0; i < 10; i++){
    cin >> apple[i];
    }
    cin >> tao;
    int count = 0;
    for (int i = 0; i < 10; i++) {
    if (apple[i] <= tao+30) {
    count++;
    }
    }
    cout << count << endl;
    }

  • 1

信息

ID
1004
难度
5
分类
模拟 点击显示
标签
递交数
28
已通过
8
通过率
29%
上传者