题解 1387: 陈教主的三角形

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

列表注意还原为空列表

摘要:解题思路:注意事项:参考代码:while True:    a,b,c=map(int,input().split())    d=[a,b,c]    xx=sorted(d)    if xx[0……

陈教主的三角形

摘要:while True:     try:         ls = list(map(int,input().split()))         ls.sort()         a,

简单python走起

摘要:解题思路:注意事项:参考代码:while True:    m=list(map(int,input().split()))    m.sort()    if m[0]+m[1]>m[2]:    ……

陈教主的三角形 (Python代码)

摘要:三角形的构成条件为两边之和大于第三边,一个判断语句即可 ```python n = list(map(int,input().split())) while 1: if n[0] < ……