| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 21111 | 孙文谦 | 三角形面积 | C++ | Accepted | 100 | 0 MS | 252 KB | 153 | 2021-06-26 16:24:01 |
#include<bits/stdc++.h> using namespace std; double d,h,ans; int main(){ scanf("%lf %lf",&d,&h); ans=d*h/2; printf("%.2lf",ans); return 0; }