Python 程序:使用底部和高度计算三角形面积

用一个实际例子编写 Python 程序,用底和高来求三角形的面积。

这个 Python 程序允许用户输入三角形的底部和高度。通过使用底部和高度值,它可以找到三角形的面积。用底和高求三角形面积的数学公式:面积=(底*高)/ 2。

# Python Program to find Area of a Triangle using base and height

base = float(input('Please Enter the Base of a Triangle: '))
height = float(input('Please Enter the Height of a Triangle: '))

# calculate the area
area = (base * height) / 2

print("The Area of a Triangle using", base, "and", height, " = ", area)

这个 Python 程序对于三角形的面积和上面一样。然而,我们使用 Python 函数概念分离了三角形的面积程序逻辑。

# Python Program to find Area of a Triangle using base and height
def area_of_triangle(base, height):
    return (base * height) / 2

base = float(input('Please Enter the Base of a Triangle: '))
height = float(input('Please Enter the Height of a Triangle: '))

# calculate the area
area = area_of_triangle(base, height)
print("The Area of a Triangle using", base, "and", height, " = ", area)

使用底部和高度输出的三角形的 Python 面积

Please Enter the Base of a Triangle: 35
Please Enter the Height of a Triangle: 85
The Area of a Triangle using 35.0 and 85.0  =  1487.5

原创文章,作者:E3C72,如若转载,请注明出处:https://www.506064.com/n/126498.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
E3C72的头像E3C72
上一篇 2024-10-03 23:08
下一篇 2024-10-03 23:08

相关推荐

发表回复

登录后才能评论