3 条题解

  • 1
    @ 2024-10-3 11:32:30
    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
    	double f;
    	double c;
    	cin>>f;
    	c=5*(f-32)/9;
    	printf("%.5lf",c);
    	return 0;
    }
    
    • 0
      @ 2026-3-8 21:13:43

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

      • 0
        @ 2025-10-5 19:18:29

        #include<bits/stdc++.h> using namespace std; int main() { double c,f; cin>>f; c=5*(f-32)/9; printf("%.5lf",c); return 0; }

        • 1

        信息

        ID
        431
        时间
        1000ms
        内存
        128MiB
        难度
        5
        标签
        递交数
        92
        已通过
        32
        上传者