3 solutions

  • 2
    @ 2024-1-27 11:22:28
    #include <iostream>
    #include <iomanip>
    using namespace std;
    
    int main()
    {
    	double r;
    	cin >> r;
    	cout << fixed << setprecision(12) << r << endl;
    	return 0;
    }
    
    • 1
      @ 2024-1-27 11:22:45
      #include <iostream>
      #include <iomanip>
      using namespace std;
      
      int main()
      {
      	double r;
      	cin >> r;
      	cout << fixed << setprecision(12) << r << endl;
      	return 0;
      }
      
      • 0
        @ 2023-9-16 17:00:36
        #include <iostream>
        #include <iomanip>
        using namespace std;
        double n;
        int main(){
        	cin>>n;
        	cout<<fixed<<setprecision(12)<<n;
        	return 0;
        }
        
        • 1

        Information

        ID
        511
        Time
        1000ms
        Memory
        256MiB
        Difficulty
        1
        Tags
        # Submissions
        67
        Accepted
        55
        Uploaded By