7 条题解

  • 4
    @ 2022-5-21 13:11:46

    考察保留一位小数的代码,上代码!

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        int x,y,z;
        double f;
        cin >> x >> y >> z;
        cout << x+y+z << endl;
        f=(x+y+z)/3.0;
        printf("%.1f",f);
        return 0;
    }
    

    日常十六题,嗨害嗨~~~

  • 2
    @ 2023-8-24 10:46:20

    过辣!(脑残人士的欢呼)

        double x,y,z;
        cin>>x>>y>>z;
        cout<<x+y+z<<endl<<fixed<<setprecision(1)<<1.0*(x+y+z)/3;
    
    • 1
      @ 2023-10-6 16:51:12
      #include <iostream>
      #include <iomanip>
      using namespace std;
      int main()
      {
          int x, y, z;
          cin >> x >> y >> z;
          cout << x + y + z << endl << fixed << setprecision(1) << (x + y + z) / 3.0;
          return 0;
      }
      
      • 1
        @ 2022-12-23 15:36:49
        #include <bits/stdc++.h>
        #include <iomanip>
        using namespace std;
        int main()
        {
            double x, y, z;
            cin >> x >> y >> z;
            int a = x + y + z;
            double b = (x + y + z) / 3.0;
            cout << a << endl;
            cout << fixed << setprecision(1) << b;
            return 0;
        }
        
        • 1
          @ 2022-12-6 15:18:06
          #include <iostream>//hetao3097453
          #include <iomanip>
          using namespace std;
          int main()
          {
              double x,y,z;
              cin >> x >> y >> z;
              cout << x + y + z << endl;
              cout << fixed << setprecision(1) << (x + y + z) / 3;
              return 0;
          }
          
          
          
          • 1
            @ 2022-5-26 13:57:52

            题解:难点在保留以为小数,可以用格式化输出printf("%.1f",avg);

            或者使用 cout<<fixed<<setprecision(1)<<sum/3.0;

            • 0
              @ 2023-9-6 20:03:15
              #include<bits/stdc++.h>
              using namespace std;
              int main()
              {
                  int a,b,c;
                  double d;
                  cin >> a >> b >> c;
                  d = (a+b+c) / 3.0;
                  cout << a+b+c << endl;
                  printf("%.1f",d);
                  return 0;
              }
              

              A

              • 1

              信息

              ID
              599
              时间
              1000ms
              内存
              64MiB
              难度
              5
              标签
              递交数
              603
              已通过
              224
              上传者