25 条题解

  • 1
    @ 2023-6-5 16:55:19

    #include<bits/stdc++.h> using namespace std; int main(){ double a; cin>>a; if(a>=0){ cout<<fixed<<setprecision(2)<<a; } if(a<0){ cout<<fixed<<setprecision(2)<<-a; } return 0; }

    信息

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