列表注意还原为空列表 摘要:解题思路:注意事项:参考代码:while True: a,b,c=map(int,input().split()) d=[a,b,c] xx=sorted(d) if xx[0…… 题解列表 2022年04月06日 0 点赞 0 评论 137 浏览 评分:0.0
陈教主的三角形 摘要:while True: try: ls = list(map(int,input().split())) ls.sort() a, 题解列表 2021年12月24日 0 点赞 0 评论 123 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: m=list(map(int,input().split())) m.sort() if m[0]+m[1]>m[2]: …… 题解列表 2021年04月07日 0 点赞 0 评论 216 浏览 评分:6.0
陈教主的三角形-题解(Python代码) 摘要:```python while True: a,b,c=map(int,input().strip().split()) if(a+b>c and a+c>b and b+c>a…… 题解列表 2020年04月20日 0 点赞 0 评论 404 浏览 评分:2.0
陈教主的三角形 (Python代码) 摘要:三角形的构成条件为两边之和大于第三边,一个判断语句即可 ```python n = list(map(int,input().split())) while 1: if n[0] < …… 题解列表 2020年03月17日 0 点赞 0 评论 515 浏览 评分:5.0