3 条题解

  • 2
    @ 2025-11-24 21:17:29
    #include<bits/stdc++.h>
    using namespace std;
    double f;
    int main(){
        cin>>f;
        cout<<fixed<<setprecision(5)<<5*(f-32)/9;
    	return 0;
    }
    
    • 0
      @ 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;
      }
      
      
      • -3
        @ 2025-11-27 21:12:06

        #include<bits/stdc++.h> using namespace std; double f; int main(){ cin>>f; cout<<fixed<<setprecision(5)<<5*(f-32)/9; return 0; }

        • 1

        信息

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