3 solutions

  • 1
    @ 2025-7-3 15:25:27
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        double a,b;
        cin>>a>>b;
        double n=a/b;
        cout<<fixed<<setprecision(9)<<n;
        return 0;
    }
    
    • 1
      @ 2024-7-26 16:16:10
      #include<bits/stdc++.h>
      using namespace std;
      int main()
      {
      	double a,b;
      	cin>>a>>b;
      	cout<<fixed<<setprecision(9)<<a/b;
          return 0;
      }
      
      • -1
        @ 2024-6-30 9:50:10
        using namespace std;
        #define PI 3.14159
        int main(){
        	double a,b;
        	cin >> a >> b;
        	cout << fixed << setprecision(9) << a/b;
        }
        
        • 1

        Information

        ID
        842
        Time
        1000ms
        Memory
        256MiB
        Difficulty
        1
        Tags
        (None)
        # Submissions
        182
        Accepted
        85
        Uploaded By