2 solutions

  • 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

      Information

      ID
      11
      Time
      1000ms
      Memory
      128MiB
      Difficulty
      4
      Tags
      (None)
      # Submissions
      38
      Accepted
      20
      Uploaded By