题解 1111: Cylinder

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

筛选

优质题解

Cylinder圆柱体:简单的数学逻辑题

摘要:解题思路:本题中要求最大的圆柱体积,则需要分两种情况考虑,最后比较得出最大的体积作为最后的结果,这里就是考虑没有用来切割圆柱底面的那一半纸张的哪一边用来卷圆面周长的两种情况,每一种只考虑正好卷完没有重……

Cylinder题解简短易懂python

摘要:解题思路:注意事项:注意分两种情况讨论,还有不要自己定义pi。。。。参考代码:import mathpi=math.piwhile True:    w,h=map(float,input().spl……

Cylinder题解,简单清晰

摘要:解题思路:注意事项:参考代码:from math import *w,h=map(float,input().split())while w:    v=[]    r=h/(pi+1)/2    i……

数学思路来解这一道题的

摘要:解题思路:注意事项:参考代码: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:    ……