Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
19617 杨为哲 【基础题】圆柱体表面积 C++ Accepted 1 MS 724 KB 160 2021-11-16 16:49:12

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int R=12,H=7; float S; S=2*H*3.1415926*R+H*H*3.1415926*2; printf("%.2f",S); return 0; }