1025-新手向代码 摘要:解题思路:考虑列表的排序注意事项:如何换行输出参考代码:a = list(map(int, input().split()))b = int(input())a.append(b)a.sort()pr…… 题解列表 2023年07月24日 2 点赞 0 评论 444 浏览 评分:10.0
[编程入门]数组插入处理-题解(python代码) 摘要:参考代码:A = list(map(int,input().split())) #将第一次输入的元素以整形放入列表 A.append(int(input())) #将第二次输入的一个元素以整形加入…… 题解列表 2021年10月15日 0 点赞 0 评论 756 浏览 评分:9.9
python注意点 摘要:先贴代码以示友好 ```python a=list(map(int,input().split())) a.append(int(input())) a.sort() for i in a:…… 题解列表 2019年11月23日 0 点赞 3 评论 1211 浏览 评分:9.4
1025: [编程入门]数组插入处理 -题解(python代码) 摘要:解题思路:注意事项:参考代码:l = list(map(int,input().split()))a = input()l.append(str(a))l[len(l)-1] = int(l[len(…… 题解列表 2021年10月13日 0 点赞 0 评论 746 浏览 评分:9.3
[编程入门]数组插入处理-题解(Python代码) 摘要:直接插入再排序 ``` list= [int(num) for num in input().split()] n = int (input()) list.append(n) list.s…… 题解列表 2019年11月24日 0 点赞 0 评论 1075 浏览 评分:8.0
数组插入处理 python 摘要:解题思路:注意事项:参考代码:a = list(map(int,input().split()))b = int(input())a.append(b)a.sort()for i in a: p…… 题解列表 2022年02月05日 0 点赞 0 评论 301 浏览 评分:2.0
T1025 数组插入处理 摘要:解题思路:注意事项:参考代码:s=list(map(int,input().split()))x=int(input())s.append(x)s.sort()list(map(print,s))…… 题解列表 2025年05月05日 0 点赞 0 评论 167 浏览 评分:0.0
嘿嘿,菜鸟来了 摘要:解题思路:注意事项:参考代码:a=list(map(int,input().split())) b=int(input()) for i in range(0,len(a)): if a[i]…… 题解列表 2024年09月27日 0 点赞 0 评论 241 浏览 评分:0.0
1025: [编程入门]数组插入处理 摘要:解题思路:使用函数注意事项:参考代码:a=input().split()c=list(map(int,a))m=int(input())c.append(m)c.sort()for i in c: …… 题解列表 2024年01月21日 0 点赞 0 评论 418 浏览 评分:0.0
简单写一下 摘要:解题思路:注意事项:参考代码:ls=list(map(int,input().split()))n=int(input())suoyin=0for i in ls: if n>=i: …… 题解列表 2023年10月15日 0 点赞 0 评论 135 浏览 评分:0.0