3 条题解

  • 1
    @ 2025-12-23 21:34:32
    #include<bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    typedef pair<int, int> pii;
    #define MP(a,b) make_pair(a,b)
    int main() {
    	ios::sync_with_stdio ( false );
    	double F;
    	cin >> F;
    	cout << fixed << setprecision ( 5 ) << 5 * ( F - 32 ) / 9 << endl;
    	return 0;
    }
    
    

    信息

    ID
    6816
    时间
    1000ms
    内存
    128MiB
    难度
    1
    标签
    递交数
    64
    已通过
    22
    上传者