3 solutions

  • 1
    @ 2025-7-3 15:24:36
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        double n;
        cin>>n;
        cout<<fixed<<setprecision(3)<<n;
        return 0;
    }
    
    • 1
      @ 2025-1-20 10:48:26

      #include<bits/stdc++.h> using namespace std; int main() { double f; cin>>f; cout<<fixed<<setprecision(3)<<f; }

      • 0
        @ 2025-4-12 19:58:31

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

        • 1

        Information

        ID
        841
        Time
        1000ms
        Memory
        256MiB
        Difficulty
        1
        Tags
        (None)
        # Submissions
        171
        Accepted
        83
        Uploaded By