Python程序:检查三角形是否有效

创新互联Python教程:

为略阳等地区用户提供了全套网页设计制作服务,及略阳网站建设行业解决方案。主营业务为做网站、网站设计、略阳网站设计,以传统方式定制建设网站,并提供域名空间备案等一条龙服务,秉承以专业、用心的态度为用户提供真诚的服务。我们深信只要达到每一位用户的要求,就会得到认可,从而选择与我们长期合作。这样,我们也可以走得更远!

编写一个 Python 程序,使用用户指定的角度检查三角形是否有效。记住,任何三角形都是有效的,如果三角形中 3 个角的和等于 180°

检查三角形是否有效的 Python 程序示例 1

这个 python 程序帮助用户输入三角形的所有角度。接下来,我们使用 If Else 语句检查给定角度之和是否等于 180°。如果为真,print 语句将打印一个有效的三角形。否则, python 程序打印为无效三角形。

# Python Program to check Triangle is Valid or Not

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

# checking Triangle is Valid or Not
total = a + b + c

if total == 180:
    print("\nThis is a Valid Triangle")
else:
    print("\nThis is an Invalid Triangle")

验证三角形是否有效的 Python 程序示例 2

在上面的 Python 例子中,我们忘了检查任何一个角度是否为零。因此,我们使用逻辑与运算符来确保所有角度都大于 0

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

# checking Triangle is Valid or Not
total = a + b + c

if (total == 180 and a != 0 and b != 0 and c != 0):
    print("\nThis is a Valid Triangle")
else:
    print("\nThis is an Invalid Triangle")
Please Enter the First Angle of a Triangle: 70
Please Enter the Second Angle of a Triangle: 70
Please Enter the Third Angle of a Triangle: 40

This is a Valid Triangle
>>> 
=================== RESTART: /Users/suresh/Desktop/simple.py ===================
Please Enter the First Angle of a Triangle: 90
Please Enter the Second Angle of a Triangle: 90
Please Enter the Third Angle of a Triangle: 0

This is an Invalid Triangle
>>>

网站题目:Python程序:检查三角形是否有效
本文网址:http://www.gawzjz.com/qtweb/news11/204211.html

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

广告

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