14 条题解

  • 1
    @ 2023-8-15 17:08:25
    /*********************************
    备注:
    *********************************/
    #include <iostream>
    #include <cstdio>
    #include <iomanip>
    #include <cmath>
    #include <math.h>
    #include <algorithm>
    #include <cstring>
    #include <string>
    #include <stack>
    #include <queue>
    #include <algorithm>
    #define LL long long
    using namespace std;
    const int INF = 0x3f3f3f3f;
    const int N = 1e5 + 10;
    double c , f;
    int main()
    {
    	cin >> f;
        c = 5 * ( f - 32 ) / 9;
        cout << fixed << setprecision(5) << c;
    	return 0;
    }
    

    信息

    ID
    843
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    797
    已通过
    415
    上传者