| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 21281 | 老师 | 三角形面积 | C++ | Accepted | 100 | 0 MS | 260 KB | 167 | 2021-06-27 10:55:51 |
#include<bits/stdc++.h> using namespace std; int main(){ double d,h,ans; scanf("%lf %lf",&d,&h); // cin>>d>>h; ans=d*h/2; printf("%.2lf",ans); return 0; }