1 条题解

  • 0
    @ 2022-11-5 9:44:40
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        double a;
        cin >> a;
        if (a < 0)
            a = -a;
        cout << fixed << setprecision(2) << a;
        return 0;
    }
    
    • 1

    信息

    ID
    591
    时间
    1000ms
    内存
    128MiB
    难度
    4
    标签
    (无)
    递交数
    244
    已通过
    118
    上传者