Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
20759 | 董承诺 | 三角形面积 | C++ | Compile Error | 0 | 0 MS | 0 KB | 153 | 2021-06-20 11:24:49 |
#include<bits/stdc++.h> namespace using std; int main(){ double a,b,c; cin>>a>>b; c=a*b/2; printf("%.2lf",c); return 0; }