| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 84044 | sh25_shenpy | 【基础题】圆柱体表面积 | C++ | 解答错误 | 1 MS | 244 KB | 230 | 2026-02-06 19:43:18 |
#include<bits/stdc++.h> using namespace std; const double pi=acos(1); const int r=7; const int h=12; int main() { double c,s; s=r*r*pi; c=2*pi*r; cout<<fixed<<setprecision(2)<<(2*s+c*h); return 0; }