| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 20820 | 老师 | 三角形面积 | C++ | Accepted | 100 | 0 MS | 256 KB | 139 | 2021-06-20 14:42:09 |
#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; }