Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
20771 | 张熠欣 | 三角形面积 | C++ | Compile Error | 0 | 0 MS | 0 KB | 154 | 2021-06-20 11:34:17 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,ans; cin>>a>>b; ans=(a*b)/2.00; printf("%.2lf",ans) cout<<ans; return 0; }