题解 1002: [编程入门]三个数最大值

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

筛选

三个数最大值

摘要:参考代码:print("Please input a,b,c")a=input()b=input()c=input()M=max(a,b,c)print("The max is:"+M)……

[编程入门]三个数最大值 Python解决

摘要:解题思路:    使用倒序,sort函数注意事项:    sort的参数reverse=False是升序,也是默认的,True为降序参考代码:        a = list(map(int,inpu……