| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 21093 | 赵天羿 | 三角形面积 | C++ | Accepted | 100 | 0 MS | 252 KB | 139 | 2021-06-26 16:16:59 |
#include<bits/stdc++.h> using namespace std; double d,h,ans; int main(){ cin>>d>>h; ans=d*h/2; printf("%.2lf",ans); return 0; }