Python判断三角形

#Copyright (c)2017, 东北大学软件学院学生 
# All rightsreserved 
#文件名称:a.py  
# 作    者:孔云  
#问题描述:编写程序,从键盘输入三条边,判断是否能够构成一个三角形。
#问题分析:组成三角形的条件是任意两边之和大于第三边,如果条件成立,则能构成三角形。条件表达式中的多个条件必须全部成立,条件之间使用and运算符连接。代码如下:
side1=float(input("the first side of triangle:"))
side2=float(input("the second side of triangle:"))
side3=float(input("the thrid side of triangle:"))
if(side1+side2>side3)and(side2+side3>side1)and(side3+side1>side2):
    print (side1,side2,side3,"is sides of triangle")
else:
    print (side1,side2,side3,"is not sides of triangle")

运行结果如下:

Python判断三角形_第1张图片

注:在这注意的是条件表达式中使用and运算符,而不是&!!!

你可能感兴趣的:(Python)