Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
122655 吴天辰 01梯形的面积 C++ Accepted 0 MS 272 KB 150 2025-06-21 11:51:27

Tests(1/1):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int a=10; int s=20; int d=8; int c=0; c=(a+s)*d/2; cout<<c; return 0; }