Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
58627 | 段文昊 | 【基础题】圆柱体表面积 | C++ | Accepted | 3 MS | 264 KB | 206 | 2023-09-24 21:30:27 |
#include<iostream> #include<cstdio> using namespace std; int main(){ double a,b,c; a=7; b=12; c=2*(3.1415926*7)*(7+12); printf("%.2lf",c); return 0; } //2*3.1415926*(b*b)+2*3.1415926*b*a;