8 条题解

  • 1
    @ 2025-2-14 17:49:59
    #include<bits/stdc++.h>
    #define yy return 0;
    using namespace std;
    double a;
    int main(){ cin>>a;cout<<fixed<<setprecision(5)<<5*(a-32)/9;yy }
    • 1
      @ 2025-1-11 9:58:38

      看一眼公式再食用此tj吧。 根据简单推导可写出如下代码:

      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          long double F;
          cin>>F;
          cout<<fixed<<setprecision(5)<<5*(F-32)/9.0;
          return 0;
      }
      
      • 0
        @ 2025-10-26 10:33:24

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

        • 0
          @ 2025-9-17 21:00:43
          #include<iostream>
          #include<iomanip>
          using namespace std;
          int main(){
              double a,b;
              cin>>a;
              b=5*(a-32)/9;
              cout<<setprecision(5)<<fixed<<b;
          }
          
          • 0
            @ 2025-9-16 22:27:26

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

            • 0
              @ 2025-6-17 19:33:01
              #include<bits/stdc++.h>
              using namespace std;
              int main()
              {
                  double n;cin>>n;
                  printf("%.5f",5*(n-32)/9);
                  return 0;
              }
              
              • -1

                #include<bits/stdc++.h>

                using namespace std;

                int main(){ double F,C; cin>>F; C=5*(F-32)/9; cout<<fixed<<setprecision(5)<<C;

                }

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

                  信息

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