2 条题解

  • 1
    @ 2026-6-12 21:12:30

    #include <bits/stdc++.h> using namespace std;

    int main(){ double a; cin>>a;

    • [ ] cout << fixed << setprecision(5) << 5*(a-32)/9*1.00000 << endl;

      return 0; }

    • -1
      @ 2026-2-2 12:14:34

      #include <bits/stdc++.h>

      using namespace std; int main() { double f; cin >> f; cout << fixed << setprecision(5) << 5 * (f - 32) / 9; return 0; }

      • 1

      信息

      ID
      545
      时间
      1000ms
      内存
      128MiB
      难度
      4
      标签
      递交数
      175
      已通过
      83
      上传者