1 条题解

  • 0
    @ 2026-4-8 12:55:17
    #include<bits/stdc++.h>
    using namespace std;
    double n;
    int main(){
    cin>>n;
    if(n<=20) printf("%.2lf",n*1.68);
    if(n>20) printf("%.2lf",n*1.98);
    return 0;
    }
    
    • 1

    信息

    ID
    2153
    时间
    1000ms
    内存
    16MiB
    难度
    3
    标签
    递交数
    28
    已通过
    27
    上传者