1 条题解

  • 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

    信息

    ID
    610
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    (无)
    递交数
    72
    已通过
    6
    上传者