1 solutions

  • 0
    @ 2024-12-11 18:35:41

    C++题解

    #include <bits/stdc++.h>
    using namespace std;
    
    inline void solve()
    {
        cout << 10 * 3.141593 << endl << 3.141593 * 25 << endl << 4 * 125 * 3.141593 / 3;
    }
    
    int main()
    {
        int t = 1;
        
        while(t--)
        {
            solve();
        }
        return 0;
    }
    
    • 1

    Information

    ID
    610
    Time
    1000ms
    Memory
    256MiB
    Difficulty
    2
    Tags
    (None)
    # Submissions
    72
    Accepted
    6
    Uploaded By