震宇大神的杀毒软件-题解(C语言代码) 摘要: #include #include typedef struct { int *data; int len; }…… 题解列表 2021年02月13日 0 点赞 0 评论 135 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: mas=list(map(int,input().split())) mas.pop(0) mas.sort(reverse=T…… 题解列表 2021年04月07日 0 点赞 0 评论 156 浏览 评分:0.0
c语言-震宇大神的杀毒软件 摘要:此题注意两点即可: (1)对数列进行降序排列,可选择冒泡、选择排序等; (2)注意输出格式,别忘了最后的换行,否则会提示格式错误; ![](/image_editor_upload/202108…… 题解列表 2021年08月10日 0 点赞 0 评论 378 浏览 评分:9.9
震宇大神的杀毒软件 摘要:解题思路:这里使用选择排序先排序,然后逆序输出即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; int a[100]; w…… 题解列表 2021年10月15日 0 点赞 0 评论 120 浏览 评分:0.0
编写题解 1391: 震宇大神的杀毒软件(冒泡排序) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int n,temp; int a[100]; whi…… 题解列表 2022年01月13日 0 点赞 0 评论 321 浏览 评分:9.9
1391: 震宇大神的杀毒软件 摘要:解题思路:注意事项:参考代码:while True: try: a=list(map(int,input().strip().split())) b = a[1:] b.sort(reverse…… 题解列表 2022年01月26日 0 点赞 0 评论 181 浏览 评分:0.0
注意换行和列表清空 摘要:解题思路:注意事项:参考代码:while True: a=list(map(int,input().split())) a=a[1:] b=sorted(a,reverse=True…… 题解列表 2022年04月06日 0 点赞 0 评论 153 浏览 评分:0.0
思路简单清晰的解法 摘要:解题思路:看过python列表操作的小伙伴应该都能看得懂注意事项:参考代码:while True: l1 = list(map(int, input().split())) l1.pop(…… 题解列表 2022年08月10日 0 点赞 0 评论 123 浏览 评分:0.0
1391——————震宇大神的杀毒软件 摘要: while True: n=list(map(int,input().split())) n.pop(0) n.sort(reverse=…… 题解列表 2022年09月08日 0 点赞 0 评论 118 浏览 评分:0.0
1391基础解法(Python) 摘要:解题思路:注意事项:参考代码:import sysfor line in sys.stdin: line = list(map(int,line[1:].split())) line.so…… 题解列表 2022年11月18日 0 点赞 0 评论 91 浏览 评分:9.9