10 条题解

  • 0
    @ 2024-3-20 17:03:16

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

    信息

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