Python判断三段线能否构成三角形的代码

时间:2024-02-11 10:09:05
【文件属性】:

文件名称:Python判断三段线能否构成三角形的代码

文件大小:34KB

文件格式:PDF

更新时间:2024-02-11 10:09:05

我就废话不多说了,还是直接看代码吧! #!/usr/bin/env python3 #coding = utf-8 def is_triangle(a=0, b=0, c=0): #abc 三条边长 A = [a,b,c] A.sort() #升序排序 if A[2] < A[1] +A[0]: print({} is triangle.format(A)) else: print(不构成三角) def triangle(f): a = float(input(第一条边是 = )) b = float(input(第二条边是 = )) c = float


网友评论