编写题解 1002: [编程入门]三个数最大值(新手小白两行搞定) 摘要:解题思路:凑字数凑字数注意事项:参考代码:a = list(map(int,input().split()))print(max(a))…… 题解列表 2022年05月31日 0 点赞 0 评论 295 浏览 评分:0.0
假设一个数为最大值 摘要:解题思路:假设a是最大值,然后if判断b大于最大值的话,那b就是最大值了,反之如果c大于最大值,那c就是最大的数注意事项:参考代码:value = input()lst = value.split()…… 题解列表 2022年04月26日 0 点赞 0 评论 534 浏览 评分:8.4
[编程入门]三个数的最大值python 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input(),split) print(max(a,b,c))…… 题解列表 2022年01月16日 0 点赞 0 评论 463 浏览 评分:6.0
最最最简单题解,入门小白也看得懂 摘要:解题思路:首先注意是输入一行数!!!!!!!使用map(x,y)将三个数拿出来。函数意思是将y拿来作用到x上。这里指在y里面拿出来一个数将它int(),就是强制转换为整形变量split()默认是以空格…… 题解列表 2021年12月28日 0 点赞 3 评论 1384 浏览 评分:9.4
直接用max(), 摘要:解题思路:直接使用max()函数注意事项:简洁明了参考代码:python的特点就是简洁,所以一句解决问题print(max(map(int,input().split())))…… 题解列表 2021年11月23日 0 点赞 0 评论 315 浏览 评分:0.0
[编程入门]三个数最大值---两种方法---(Python) 摘要:Python 1.通过max求最大值: ```python list=list(map(int,input().split())) print(max(list)) ``` 2.通过if-…… 题解列表 2021年11月04日 0 点赞 0 评论 833 浏览 评分:8.0
[入门]用if-elif-else找出a,b,c中找出最大值------Python 摘要:解题思路:a>b时比较a>c成立时a大否则c大,a>b不成立时判断b>c成立时b大否则c大注意事项:参考代码:a,b,c=map(int,input().split())if a>b: if a…… 题解列表 2021年11月02日 0 点赞 0 评论 1006 浏览 评分:7.3
[编程入门]三个数最大值 Python解决 摘要:解题思路: 使用倒序,sort函数注意事项: sort的参数reverse=False是升序,也是默认的,True为降序参考代码: a = list(map(int,inpu…… 题解列表 2021年08月16日 0 点赞 0 评论 1834 浏览 评分:9.0
三个数最大值 摘要:参考代码:print("Please input a,b,c")a=input()b=input()c=input()M=max(a,b,c)print("The max is:"+M)…… 题解列表 2021年07月19日 0 点赞 2 评论 730 浏览 评分:7.7
编写题解 1002: [编程入门]三个数最大值 摘要:解题思路:注意事项:参考代码:lst = list(map(int,input().split())) print(max(lst))…… 题解列表 2021年04月04日 0 点赞 0 评论 578 浏览 评分:8.0