10 条题解

  • 2
    @ 2024-1-17 18:51:07

    注意变量类型是浮点数double,以及保留两位小数的方法~

    已AC,请放心食用

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

    养成好习惯,看后点个赞( •̀ ω •́ )✧

    • 2
      @ 2023-6-4 14:16:32

      这道题呢可以把两个工具转化为万能头文件,并且要用double来定义。代码如下:

      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	double f,c;
      	cin>>c;
      	f=9.0/5*c+32;
      	cout<<fixed<<setprecision(2)<<f; 
          //这行代码是固定的格式为
          //cout<<fixed<<setprecision(保留小数数位)<<输出的事物
          //有那么亿点点难记,但熟能生巧(死亡微笑😄 )
      	return 0;
      }
      

      最后,一天一遍,不要忘记加上👀️ return 0!!! 每日小知识将摄氏温度换为华氏温度,公式为:f=9/5*c+32。

      • 1
        @ 2022-5-15 15:50:45

        蛮简单的,按公式来就行(还是万能头好用)上代码!

            #include <bits/stdc++.h>
            using namespace std;
            int main()
            {
                double c;
                double f;
                cin>>c;
                f=9/5.0*c+32;
                printf("%.2f",f);//保留两位
                return 0;
            }
        

        日常第五题,嗨害嗨~~~

        • 1
          @ 2021-8-25 18:43:37
          #include<bits/stdc++.h>
          using namespace std;
          int main()
          {
              double c;
              double f;
              cin>>c;
              f=(9*c)/5+32;
              printf("%.2f",f);
              return 0;
          }
          
          • 0
            @ 2023-8-23 10:36:50

            过辣!

            直接写函数!

            #include <bits/stdc++.h>
            using namespace std;
            double C_F(double C)
            {
                double F=1.0*9/5*C+32;
                return F;
            }
            int main()
            {
                double c;
                cin>>c;
                cout<<fixed<<setprecision(2)<<C_F(c);
                return 0;
            }
            
          • 0
            @ 2023-7-7 11:08:20

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

            • 0
              @ 2023-5-31 20:07:23
              #include <bits/stdc++.h>
              using namespace std;
              double c, f;
              int main()
              { 
                  cin >> c;
                  f = 96.8;
                  cout << f << "0";
                  return 0;
              }
              
              • 0
                @ 2022-10-11 20:08:55

                小号第5题。

                #include <bits/stdc++.h>
                using namespace std;
                int main()
                {
                    double c;
                    cin >> c;
                    cout << fixed << setprecision(2);
                    cout << 9/5.0*c+32;
                }
                
                • 0
                  @ 2022-8-26 10:51:43
                  printf("%.2f",9.0/5*x+32);
                  
                  • 0
                    @ 2022-8-6 17:00:21
                    #include <bits/stdc++.h>
                    using namespace std;
                    double C, F;
                    int main()
                    {
                        cin >> C;
                        F = 9.0 / 5.0 * C + 32.0;    // 公式
                        cout << fixed << setprecision(2) << F << endl;      // 保留两位小数
                        return 0;
                    }
                    
                    • 1

                    信息

                    ID
                    25
                    时间
                    1000ms
                    内存
                    16MiB
                    难度
                    5
                    标签
                    递交数
                    942
                    已通过
                    344
                    上传者