1 条题解

  • 0
    @ 2023-9-22 20:46:38
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int x;
        cin>>x;
        if(x<10)
        cout<<'A';
        else if(10<=x&&20>x)
        cout<<'B';
        else if(20<=x&&40>x)
        cout<<'C';
        else if(40<=x&&50>x)
        cout<<'D';
        else cout<<'E';
    }
    
    • 1

    【入门】找出最经济型的包装箱型号

    信息

    ID
    39
    时间
    1000ms
    内存
    16MiB
    难度
    2
    标签
    递交数
    82
    已通过
    50
    上传者