当前分类:300例题>>正文

Python示例:计算等腰三角形面积

来源:互联网   更新时间:2023年6月26日  

Python 示例

写 Python示例求等腰三角形面积。这个 python 示例允许输入等腰三角形边的长度,并使用数学公式找到该面积。

# Python Program to find Isosceles Triangle Area
import math

a = float(input("Enter Isosceles Triangle SideLength  : "))

b = float(input("Enter the Other Side of Isosceles Triangle : "))

isosceleArea = (b * math.sqrt((4 * a * a) - (b * b)))/4;

print("The Area of the Isosceles Triangle = %.3f" %isosceleArea) 

Python 面积的一个 n 等腰三角形输出

Enter Isosceles Triangle SideLength  : 10
Enter the Other Side of Isosceles Triangle : 8
The Area of the Isosceles Triangle = 36.661

在这个 Python示例中,我们创建了一个等值三角形面积函数来寻找等腰三角形的面积。

# Python Program to find Isosceles Triangle Area
import math

def IsoscelesTriangleArea(a, b):
    return (b * math.sqrt((4 * a * a) - (b * b)))/4

a = float(input("Enter Isosceles Triangle Side Length  : "))

b = float(input("Enter the Other Side of Isosceles Triangle : "))

isosceleArea = IsoscelesTriangleArea(a, b)

print("The Area of the Isosceles Triangle = %.3f" %isosceleArea) 

本文固定链接:https://6yhj.com/leku-p-4490.html  版权所有,转载请保留本地址!
[猜你喜欢]

标签: python基础