16 条题解

  • -2
    @ 2025-2-21 11:20:20

    #include<bits/stdc++.h> using namespace std; int main(){ double x; cin>>x; if(x<0){ printf("%.2lf",-x);} if(x>=0){ printf("%.2lf",x);}
    return 0; }

    信息

    ID
    2131
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    1110
    已通过
    549
    上传者