利用列表max()函数求最大值 摘要:解题思路:注意事项:参考代码:def m(l): return max(l)l = list(map(float, input().split()))print("%.3f" % m(l))pr…… 题解列表 2024年03月28日 0 点赞 0 评论 142 浏览 评分:9.9
[编程入门]宏定义之找最大数—新手比较易懂 摘要:def t_num(a,b,c):#定义函数 print("%.3f"%max(a,b,c))找到最大值,格式化字符串保留3位小数 print("%.3f"%max(a,b,c))…… 题解列表 2024年01月28日 0 点赞 0 评论 127 浏览 评分:0.0
5行代码搞定 摘要:解题思路:直接使用内置函数max()来判断大小注意事项:使用format()的时候注意前面要加上{}参考代码:def Max_num(a,b,c): for i in range(1,3):…… 题解列表 2023年05月07日 0 点赞 0 评论 63 浏览 评分:0.0
最笨的方法,人家用max我比了大半天 摘要:解题思路:把max函数里面的东西都写出来了注意事项:我把底层都写出来了参考代码:a,b,c=map(float,input().strip().split())if a>b: if c>a: …… 题解列表 2022年05月11日 0 点赞 0 评论 133 浏览 评分:0.0
[编程入门]宏定义之找最大数--简单易理解版 摘要:解题思路:注意事项:参考代码:a,b,c = map(float,input().split())da = max(a,b,c)print("{:.3f}".format(da))print("{:.…… 题解列表 2021年11月22日 0 点赞 0 评论 199 浏览 评分:0.0
1041: [编程入门]宏定义之找最大数-题解(python代码) 摘要:解题思路:注意事项:参考代码:a,b,c = map(int,input().split())d = max(a,b,c)print("{:.3f}".format(d))print("{:.3f}"…… 题解列表 2021年10月14日 0 点赞 0 评论 190 浏览 评分:0.0
[编程入门]宏定义之找最大数 摘要:ls = list(map(int, input().split()))num = max(ls)print('%.3f' % num)print('%.3f' % n…… 题解列表 2021年04月07日 0 点赞 0 评论 220 浏览 评分:0.0
[编程入门]宏定义之找最大数def函数 摘要:解题思路:注意事项:参考代码:def max_number(a,b,c): print("{:.3f}".format(max(a,b,c))) …… 题解列表 2021年02月20日 0 点赞 0 评论 289 浏览 评分:9.9
[编程入门]宏定义之找最大数-题解(Python代码) 摘要:如果只是为了答题,那这样也彳亍a,b,c=map(int,input().split()) s=max(a,b,c) print("%.3f" % s) print("%.3f" % s)…… 题解列表 2020年09月28日 0 点赞 0 评论 524 浏览 评分:0.0
[编程入门]宏定义之找最大数-题解(Python代码) python 摘要:```python list = [] #定义列表 list=0 #定义变量 list = input().split() #输入数据以空格切割放进list 里面 ans = flo…… 题解列表 2019年11月22日 0 点赞 2 评论 1812 浏览 评分:9.7