📜  用于查找圆柱周长的Python程序

📅  最后修改于: 2022-05-13 01:56:56.360000             🧑  作者: Mango

用于查找圆柱周长的Python程序

给定直径和高度,求圆柱的周长。

周长是二维形状轮廓的长度。圆柱体是一个三维形状。因此,从技术上讲,我们无法找到圆柱体的周长,但我们可以找到圆柱体横截面的周长。这可以通过在其底部创建投影来完成,因此,在其侧面创建投影,然后形状将缩小为矩形。

公式 :
圆柱周长 (P) =  ( 2 * d ) + ( 2 * h )
这里d是圆柱体的直径
h是圆柱体的高度

例子 :

Input : diameter = 5, height = 10 
Output : Perimeter = 30

Input : diameter = 50, height = 150 
Output : Perimeter = 400
Python
# Function to calculate 
# the perimeter of a cylinder
def perimeter( diameter, height ) :
    return 2 * ( diameter + height ) 
  
# Driver function
diameter = 5 ;
height = 10 ;
print ("Perimeter = ",
            perimeter(diameter, height))
Output :Perimeter = 30 units
Please refer complete article on Find the perimeter of a cylinder for more details!