题解 1111: Cylinder

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

数学思路来解这一道题的

摘要:解题思路:注意事项:参考代码:import mathwhile True:    w, h = map(int, input().split())    if w==0 or h==0:       ……

1111: Cylinder ,python版本

摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0:    ……

Cylinder-题解(C++代码)-----×

摘要:1、参照优质题解 链接:[https://blog.dotcpp.com/a/2608-1](https://blog.dotcpp.com/a/2608-1) ```cpp #include ……

Cylinder-题解(C++代码)

摘要:#个人心得 1.主要是先做数学题,找出公式,才能方便的进行计算 2.c++输出3位小数时,可以使用cout w ? w / 2 : r; result2 = PI * r*r*w; ……

Cylinder-题解(C++代码)

摘要: ```cpp include #include #define PI 3.141592653589793238 using namespace std; int main() { d……

Cylinder (C语言代码)

摘要:解题思路:注意事项:参考代码:import java.text.DecimalFormat; import java.util.Scanner; public class Main {   ……