Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
21100 | 孙文谦 | 三角形面积 | C++ | Compile Error | 0 | 0 MS | 0 KB | 140 | 2021-06-26 16:19:29 |
#include<bits/stdc++.h> using namespace std; double d,h,ans; int mian(){ scanf("%lf %lf",&d,&h); ans=d*h/2; printf("%.2lf",ans); }