| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 5184 | 朱嘉铭 | 梯形的面积 | C++ | Wrong Answer | 0 | 0 MS | 252 KB | 160 | 2020-07-28 10:43:31 |
#include<bits/stdc++.h> using namespace std; int main () { int a,b,c; cin>>a>>b>>c; float n=(a+b)*c; printf("%.2lf",n); return 0; }