2 条题解

  • -1
    @ 2025-11-1 10:48:58
    #include <bits/stdc++.h>
    using namespace std;
    int main() {
        double F;
        cin >> F;
    
        double C = 5.0 * (F - 32) / 9.0;
    
        printf("%.5lf",C);
    
        return 0;
    }
    
    
    
    • -1
      @ 2025-9-27 11:38:53

      #include <iostream>
      #include <iomanip>
      using namespace std;
      
      int main() {
          double F;
          cin >> F;
      
          double C = 5.0 * (F - 32) / 9.0;
      
          cout << fixed << setprecision(5) << C << endl;
      
          return 0;
      }
      
      
      • 1

      信息

      ID
      432
      时间
      1000ms
      内存
      128MiB
      难度
      10
      标签
      递交数
      8
      已通过
      4
      上传者