编写题解 1132: C语言训练-最大数问题(python) 摘要:~~~python def main(): L = list(map(int,input().split())) #另一个测试集是逐行输入的 while True: …… 题解列表 2024年10月13日 0 点赞 0 评论 92 浏览 评分:9.9
三行代码解决问题 摘要:注意事项:在输入时,可能输入的数据不止一行,因此要判断第一行最后一个数字是否为-1,不是便要追加下一行 代码展示: ```python list1=list(map(int,input().…… 题解列表 2024年02月10日 0 点赞 0 评论 134 浏览 评分:9.9
1132基础解法(Python) 摘要:注意事项:用sys.stdin避免输入异常,此题因为-1即表示终止,且不存在多个-1或者-1后仍有输入的情形,所以难度大大降低参考代码:import syslst = []for line in sy…… 题解列表 2022年11月05日 0 点赞 0 评论 83 浏览 评分:0.0
两种方式表示列表最后一个元素 摘要:解题思路:注意事项:参考代码:方法一:a=list(map(int,input().split())) b=len(a) while a[b-1]!=-1: a.extend(list(…… 题解列表 2022年08月13日 0 点赞 0 评论 208 浏览 评分:9.9
优质题解 1132: C语言训练-最大数问题 (Python 题解) 摘要:解题思路:第一行为样例使用input()接收起来,使用split() 来进行分割 #split() 是一个 分割字符串并储存到列表内的方法,split()括号内不输入内容 默认拿空格为分隔符m…… 题解列表 2022年05月30日 0 点赞 0 评论 883 浏览 评分:9.9
C语言训练-最大数问题-题解------------Python代码 摘要:解题思路:注意事项:参考代码:lis = list(map(int, input().split()))while lis[-1] != -1: lis.extend(list(map(int,…… 题解列表 2022年01月09日 0 点赞 0 评论 161 浏览 评分:0.0
C语言训练-最大数问题-----详解!!!-----【Python】 摘要:解析:数入一组数中判断是否有-1,将-1前的数放入到列表n中,如果没有-1将循环执行t.extend扩充列表,直到有-1时跳出循环。最后用max函数求出最大值。 ```python t=list(…… 题解列表 2021年11月05日 0 点赞 3 评论 354 浏览 评分:7.3
C语言训练-最大数问题 摘要:解题思路:注意事项:参考代码:a = 1alist = []while a: alist += list(map(int, input().split())) if -1 in alist…… 题解列表 2021年06月16日 0 点赞 0 评论 235 浏览 评分:0.0
1132: C语言训练-最大数问题 python 摘要:解题思路:注意事项:因为-1是结束,所以要先移除-1这个值,否则在负数输入的时候会导致错误结果参考代码:list1 = list(map(int,input().split())) while li…… 题解列表 2021年04月25日 0 点赞 0 评论 453 浏览 评分:9.9
C语言训练-最大数问题-题解(Python代码) 摘要:lst1 = [] lst2 = [] a = True while a: lst1 = list(map(int, input().split())) for x in r…… 题解列表 2020年05月25日 0 点赞 2 评论 461 浏览 评分:2.0