题解 1111: Cylinder

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

筛选

Cylinder最大圆柱体积

摘要:解题思路:pi的精度11位注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; const double pi = ……

1111Cylinder(数学与语文的结合)

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;#define PI 3.141592653589793//这道题考的是语文阅读理解吧?//首……
优质题解

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

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

Cylinder题解简短易懂python

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

15行+图解公式法 完成 Cylinder

摘要:解题思路:图片引用自kevin的文章根据上图得出的公式求解。注意事项:1.需要自定义 PI的值,或使用acos(-1) 来求(会增加 时间和空间 的占用)。PI 可通过 printf("%.15f",……

1111: Cylinder

摘要:解题思路: ![](/image_editor_upload/20220209011058_33558.jpg) 图片引用自kevin的文章 具体代码: ```c #include #de……

Cylinder(C++代码)

摘要:解题思路:注意事项:1.double类型                2.w>0参考代码:#include <iostream>#define PI 3.141592653589793238#inc……

Cylinder题解,简单清晰

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