2 条题解

  • 0
    @ 2023-11-4 14:08:37

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

    • 0
      @ 2023-10-15 9:47:40
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          int x,y,z;
          cin>>x>>y>>z;
          cout<<x+y+z<<endl<<fixed<<setprecision(1)<<(x+y+z)*1.0/3;
          return 0;
      }
      
      • 1

      信息

      ID
      599
      时间
      1000ms
      内存
      64MiB
      难度
      4
      标签
      递交数
      51
      已通过
      24
      上传者