创新互联python教程:
成都创新互联是一家专业提供修武企业网站建设,专注与成都网站制作、网站设计、HTML5、小程序制作等业务。10年已为修武众多企业、政府机构等服务。创新互联专业网络公司优惠进行中。
写 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)
标题名称:Python程序:计算等腰三角形面积
网页链接:http://www.mswzjz.cn/qtweb/news43/103993.html
攀枝花网站建设、攀枝花网站运维推广公司-贝锐智能,是专注品牌与效果的网络营销公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 贝锐智能