3 条题解

  • 1
    @ 2023-8-20 15:39:20
    #include<iostream>
    using namespace std;
    int main(){
        double F, C;
        cin>>F;
        C += 5 * (F - 32) / 9;
        printf("%.5lf", C);
        return 0;
    }
    
    • 0
      @ 2023-10-22 10:50:43
      #include <iostream>
      using namespace std;
      int main()
      {
          double F;
          cin>>F;
          double C = 5 * (F - 32) / 9;
          printf("%.5f",C);
          return 0;
      }
      
      • 0
        @ 2022-12-27 9:52:37
        #include<bits/stdc++.h>
        using namespace std;
        long long q,w,e,r,t,y,u,i,o,p,d,f,g,h,j,k,l,z,x,c,v,b,n,m;
        string s;double dd,ee;
        long long a[100000],as[100000],asd[100000];
        int main()
        {
        	cin>>dd;
        	cout<<fixed<<setprecision(5)<<(dd-32)*1.000000/9*5;
            return 0;
        }
        
        • 1

        信息

        ID
        6812
        时间
        1000ms
        内存
        128MiB
        难度
        1
        标签
        (无)
        递交数
        103
        已通过
        70
        上传者