4 条题解

  • 3
    @ 2022-12-11 16:27:56
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        double x;
        cin >> x;
        if (x > 0)
        {
            cout << fixed << setprecision(2) << x * 1;
        }
        else
        {
            cout << fixed << setprecision(2) << x * -1;
        }
        return 0;
    }
    
    • 2
      @ 2023-10-14 19:38:29

      当我拿出abs,阁下又该如何应对

      #include<bits/stdc++.h>
      using namespace std;
      double n;
      int main()
      {
          cin>>n;
          cout<<fixed<<setprecision(2)<<abs(n);
          return 0;
      }
      
      • 1
        @ 2023-10-28 19:05:31
        #include <cstdio>
        #include <cmath>
        using namespace std;
        int main(){
            double f;
            scanf("%lf",&f);
            printf("%.2lf\n",abs(f));
            return 0;
        }
        
        • 0
          @ 2023-4-6 22:16:18

          直接用abs函数

          #include<bits/stdc++.h>
          using namespace std;
          int main()
          {
              double x;
              cin>>x;
              cout<<fixed<<setprecision(2)<<abs(x);
              return 0;
          }
          • 1

          信息

          ID
          673
          时间
          1000ms
          内存
          16MiB
          难度
          1
          标签
          递交数
          107
          已通过
          77
          上传者