2 条题解

  • 1

    #include<bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; cout<<fixed<<setprecision(9)<<a/b;

    return 0;
    

    }

    • 1
      @ 2025-4-12 11:41:35

      include<bits/stdc++.h>

      using namespace std; int main(){

      int a,b;
      cin>>a>>b;
      cout<<fixed<<setprecision(9)<<1.0*a/b;
      
      
      
      return 0;		
      

      }

      • 1

      信息

      ID
      182
      时间
      1000ms
      内存
      256MiB
      难度
      1
      标签
      递交数
      18
      已通过
      15
      上传者