2 条题解

  • 0
    @ 2023-10-28 17:37:00
    #include <iostream>
    using namespace std;
    int main()
    {
        int a,b;
        cin>>a>>b;
        double c = (double)a/b;
        printf("%.9f",c);
        return 0;
    }
    
    • 0
      @ 2023-6-28 12:38:00

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

      • 1

      信息

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