Python程序:给定两个角的情况下计算三角形的角

创新互联Python教程:

写一个 Python 程序,如果给出两个角,用一个实例来求三角形的角。

如果给出两个角,Python 程序可以找到三角形的角示例 1

这个 python 程序帮助用户输入三角形的两个角度。接下来,我们从 180°减去这两个角度,因为三角形中所有角度的总和= 180°。

# Python Program to find Angle of a Triangle if two angles are given

a = float(input('Please Enter the First Angle of a Triangle: '))
b = float(input('Please Enter the Second Angle of a Triangle: '))

# Finding the Third Angle
c = 180 - (a + b)

print("Third Angle of a Triangle = ", c)

Python 程序使用两个角度查找三角形的角度示例 2

这个 Python 求三角形角度的代码同上。然而,我们使用函数的概念分离了三角形的角度程序逻辑。

# Python Program to find Angle of a Triangle if two angles are given

def triangle_angle(a, b):
    return 180 - (a + b)

a = float(input('Please Enter the First Angle of a Triangle: '))
b = float(input('Please Enter the Second Angle of a Triangle: '))

# Finding the Third Angle
c = triangle_angle(a, b)
print("Third Angle of a Triangle = ", c)

三角形输出的 Python 角度

Please Enter the First Angle of a Triangle: 45
Please Enter the Second Angle of a Triangle: 95
Third Angle of a Triangle =  40.0

标题名称:Python程序:给定两个角的情况下计算三角形的角
链接URL:http://www.csdahua.cn/qtweb/news39/334489.html

网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网