1 条题解

  • 1
    @ 2022-10-29 10:45:23
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int a, b;
        cin >> a >> b;
        double c = 1.0 * a / b;
        cout << fixed << setprecision(9) << c;
        return 0;
    }
    
    • 1

    信息

    ID
    240
    时间
    1000ms
    内存
    128MiB
    难度
    2
    标签
    (无)
    递交数
    200
    已通过
    124
    上传者