2 条题解

  • 0
    @ 2026-8-28 21:52:28

    #include<bits/stdc++.h>

    using namespace std;

    int main(){

     cout<<625.3/1.6; 
    
     return 0;
    

    }

    • -2
      @ 2026-4-7 13:01:59

      #include #include using namespace std; int main() { double a=625.3; double b=1.6; cout<<fixed<<setprecision(3)<<a/b<<endl;
      }

      • @ 2026-5-16 10:31:56

        foo.cc:4:10: error: #include expects "FILENAME" or 4 | #include #include using namespace std; int main() { double a=625.3; double b=1.6; cout<<fixed<<setprecision(3)<<a/b<<endl; | ^ foo.cc:5:1: error: expected declaration before '}' token 5 | } | ^

    • 1

    信息

    ID
    3490
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    204
    已通过
    95
    上传者