| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 84045 | sh25_shenpy | 【基础题】圆柱体表面积 | C++ | 通过 | 0 MS | 248 KB | 232 | 2026-02-06 19:44:00 |
#include<bits/stdc++.h> using namespace std; const double pi=2*acos(0); 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; }