4 条题解

  • 1
    @ 2024-10-12 19:52:44
    #include<bits/stdc++.h> 
    using namespace std; 
    int main() 
    { 
     int a,b,h;
     double s; 
     cin>>a>>b>>h; 
     s=(a+b)*h/2.00; 
     cout<<fixed<<setprecision(2)<<s; 
     return 0; 
    }
    

    信息

    ID
    7
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    356
    已通过
    144
    上传者