1 条题解

  • 0
    @ 2022-11-29 18:27:12
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    float x;
    cin>>x;
    if(x==1){
    x=x*4.5;
    printf("%.1f",x);
    }
    else if(x==2||x==3||x==4||x==5){
    x=x*4.5;
    printf("%.1f",x);
    }
    else if(x==6||x==7||x==8||x==9||x==10){
    x=x*4.0;
    printf("%.1f",x);
    }
    else if(x>10){
    x=x*3.5;
    printf("%.1f",x);
    }
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    • 1

    信息

    ID
    714
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    22
    已通过
    10
    上传者