8 条题解

  • 0
    @ 2023-6-5 16:54:30

    #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
    608
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    (无)
    递交数
    317
    已通过
    156
    上传者