2 条题解

  • 0
    @ 2024-11-17 21:09:32

    因为输出小数点后 99 位,所以printf("%.9lf",a/b);

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        double a,b,c;
        cin>>a>>b;
        printf("%.9lf",a/b);
        return 0;
    }
    
    

    信息

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