Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
125958 | 陈淮遇 | 01梯形的面积 | C++ | Wrong Answer | 0 MS | 268 KB | 149 | 2025-07-15 16:55:40 |
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; int c; cin>>a>>b>>c; int d=(a+b)*c/2; cout << d; return 0; }
------Input------
0
------Answer-----
120
------Your output-----
0