1 条题解

  • 1
    @ 2026-8-27 10:25:53
    #include <iostream>
    using namespace std;
    
    int main()
    {
        int score;
        cin >> score;
        if (score >= 90)
        {
            cout << "A" << endl;
        }
        else if (score >= 70)
        {
            cout << "B" << endl;
        }
        else if (score >= 60)
        {
            cout << "C" << endl;
        }
        else
        {
            cout << "D" << endl;
        }
        return 0;
    }
    
    • 1

    信息

    ID
    210
    时间
    1000ms
    内存
    64MiB
    难度
    4
    标签
    递交数
    220
    已通过
    103
    上传者