1111: Cylinder ,python版本 摘要:pi = 3.14159265358while True: try: w,h=map(int,input().strip().split()) if w == 0 and h == 0: …… 题解列表 2021年11月01日 0 点赞 1 评论 258 浏览 评分:0.0
数学思路来解这一道题的 摘要:解题思路:注意事项:参考代码:import mathwhile True: w, h = map(int, input().split()) if w==0 or h==0: …… 题解列表 2021年12月07日 0 点赞 0 评论 220 浏览 评分:0.0
Cylinder题解,简单清晰 摘要:解题思路:注意事项:参考代码:from math import *w,h=map(float,input().split())while w: v=[] r=h/(pi+1)/2 i…… 题解列表 2022年01月19日 0 点赞 0 评论 314 浏览 评分:6.0
Cylinder题解简短易懂python 摘要:解题思路:注意事项:注意分两种情况讨论,还有不要自己定义pi。。。。参考代码:import mathpi=math.piwhile True: w,h=map(float,input().spl…… 题解列表 2022年12月05日 0 点赞 0 评论 154 浏览 评分:9.9
优质题解 Cylinder圆柱体:简单的数学逻辑题 摘要:解题思路:本题中要求最大的圆柱体积,则需要分两种情况考虑,最后比较得出最大的体积作为最后的结果,这里就是考虑没有用来切割圆柱底面的那一半纸张的哪一边用来卷圆面周长的两种情况,每一种只考虑正好卷完没有重…… 题解列表 2023年09月27日 0 点赞 0 评论 191 浏览 评分:10.0