25 条题解

  • -1
    @ 2023-4-26 17:08:17

    #include<iostream> #include<iomanip> using namespace std; int main() { double n; cin>>n; if(n>=0) { cout<<fixed<<setprecision(2)<<n; } if(n<0) { cout<<fixed<<setprecision(2)<<-n; } return 0; }

    信息

    ID
    598
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    (无)
    递交数
    356
    已通过
    181
    上传者