8 条题解

  • 0
    @ 2025-9-17 20:51:17
    #include<iostream>
    #include<iomanip>
    using namespace std;
    int main(){
        double r,a,b,c;
        cin>>r;
        a=2*r;
        b=2*3.14159*r;
        c=3.14159*r*r;
        cout<<fixed<<setprecision(4)<<a;
        cout<<" ";
        cout<<fixed<<setprecision(4)<<b;
        cout<<" ";
        cout<<fixed<<setprecision(4)<<c;
        return 0;
    }
    

    信息

    ID
    4464
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    (无)
    递交数
    237
    已通过
    165
    上传者