[编程入门]三个数找最大值-题解(Python代码) 摘要:a, b, c = map(int, input().split())if a > b and a > c: print(a)elif b > a and b > c: print(b)e…… 题解列表 2021年02月18日 0 点赞 0 评论 361 浏览 评分:6.0
[编程入门]三个数找最大值 (Python代码) 摘要:```python a, b, c= map(int,input().split()) # 表示的是一次能够输入多个值,依照空格进行分割。(输入不够三个数则不能按回车) sum = [a,b,…… 题解列表 2020年03月18日 0 点赞 0 评论 1285 浏览 评分:6.7