10 条题解

  • 1
    @ 2024-11-6 13:43:59

    #include<bits/stdc++.h> using namespace std; int main() { double c,f; cin>>c; f=(9*c)/5+32; cout<<fixed<<setprecision(2)<<f<<endl; return 0; }

    • 1
      @ 2024-11-6 13:00:01

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

      • 0
        @ 2025-8-29 2:05:42

        555

        • 0
          @ 2025-8-29 2:05:20

          555

          • 0

            思路

            根据公式推即可。

            code

            #include<bits/stdc++.h>
            using namespace std;
            int main(){
               float c,f;
               cin>>c;
               f=1.8*c+32;
               printf("%.2f",f);
               return 0;
            }
            
            • 0
              @ 2024-10-9 18:57:45
              #include<iostream>
              #include<iomanip>
              using namespace std; 
              int main() 
              { 
               double c,a;
               cin>>c; 
               a=9*c/5+32; 
               cout<<fixed<<setprecision(2)<<a; 
               return 0; 
              }
              
              • -2
                @ 2023-12-24 17:10:57

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

                • -2
                  @ 2023-12-24 0:16:49

                  才50分,谁找找错 #include<bits/stdc++.h> using namespace std; int main() { double F; scanf("4f",&F); printf("39.20",39.20*(F+32)/9); return 0; }

                  • -2
                    @ 2023-12-23 13:41:02

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

                    • -3
                      @ 2023-12-24 16:41:59

                      三叶的题解来啦 #include<bits/stdc++.h> using namespace std; int main() {double c,f; cin>>c; f=9*c/5+32; cout<<fixed<<setprecision(2)<<f;

                      return 0;
                      

                      }image

                      • 1

                      信息

                      ID
                      13
                      时间
                      1000ms
                      内存
                      256MiB
                      难度
                      1
                      标签
                      递交数
                      186
                      已通过
                      127
                      上传者