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