2 条题解

  • 0
    @ 2024-10-20 16:09:46
    #include<bits/stdc++.h>
    using namespace std;
    
    int  main(){
        double a;
        cin>>a;
        printf("%.2lf",abs(a));
        return 0;
    }
    
    • -2
      @ 2024-9-8 10:40:54

      #include <iostream> using namespace std; int main() { double x; cin>>x; if(x>=0){ printf("%.2lf\n",x); } else{ x=0-x; printf("%.2lf\n",x); } return 0; }

      • 1

      信息

      ID
      176
      时间
      1000ms
      内存
      16MiB
      难度
      6
      标签
      递交数
      163
      已通过
      50
      上传者