1 条题解

  • 0
    @ 2025-3-7 14:05:27
    #include <bits/stdc++.h>
    using namespace std;
    
    int main()
    {
        double f;
        cin >> f;
        double c;
        c = 5*(f-32)/9;
        cout << fixed << setprecision(5) << c;
        return 0;
    }
    
    • 1

    信息

    ID
    25
    时间
    1000ms
    内存
    256MiB
    难度
    6
    标签
    递交数
    15
    已通过
    13
    上传者