Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
12226 | 徐一喆 | 【基础题】圆柱体表面积(2) | C++ | Accepted | 2 MS | 808 KB | 155 | 2021-05-20 12:32:50 |
#include<bits/stdc++.h> using namespace std; int main() { double r,h; cin>>r>>h; printf("%.3lf\n",r*r*3.1415926*2+r*2*3.1415926*h); return 0; }