1 条题解

  • 0
    @ 2024-10-31 23:21:09

    参考答案:

    #include <iostream>
    #include <cmath>
    using namespace std;
    int main()
    {
        int n;
        cin >> n;
        printf("%.3lf", sqrt(n));
        return 0;
    }
    
    • 1

    信息

    ID
    5440
    时间
    1000ms
    内存
    256MiB
    难度
    1
    标签
    递交数
    4
    已通过
    3
    上传者