| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5366 | 孙文谦 | 梯形的面积 | C++ | Accepted | 100 | 0 MS | 260 KB | 145 | 2020-07-31 19:29:17 |
#include<bits/stdc++.h> using namespace std; int main(){ double a,b,h; cin>>a>>b>>h; printf("%.2lf",(a+b)*h/2); return 0; }