1 条题解

  • 0
    @ 2024-11-3 16:14:54

    #include <iostream> #include <iomanip> using namespace std; int main(){ double a,b; cin >> a >> b; cout << fixed << setprecision(2) << 1 / (1 / a + 1 / b); return 0; }

    信息

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