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
编写题解 1391: 震宇大神的杀毒软件(冒泡排序) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int n,temp; int a[100]; whi…… 题解列表 2022年01月13日 0 点赞 0 评论 321 浏览 评分:9.9
震宇大神的杀毒软件 摘要:解题思路:这里使用选择排序先排序,然后逆序输出即可注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n; int a[100]; w…… 题解列表 2021年10月15日 0 点赞 0 评论 118 浏览 评分:0.0
c语言-震宇大神的杀毒软件 摘要:此题注意两点即可: (1)对数列进行降序排列,可选择冒泡、选择排序等; (2)注意输出格式,别忘了最后的换行,否则会提示格式错误; ![](/image_editor_upload/202108…… 题解列表 2021年08月10日 0 点赞 0 评论 378 浏览 评分:9.9
简单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语言代码) 摘要: #include #include typedef struct { int *data; int len; }…… 题解列表 2021年02月13日 0 点赞 0 评论 135 浏览 评分:0.0
震宇大神的杀毒软件-题解(C++代码) 摘要:解题思路:利用sort注意事项:逆序输出参考代码:#include<iostream>#include<algorithm>using namespace std;int main(){ in…… 题解列表 2020年12月04日 0 点赞 0 评论 145 浏览 评分:0.0
震宇大神的杀毒软件-题解(C语言代码) 摘要:#include<stdio.h>int main(){ int n,i,j,temp; int a[100]; while((scanf("%d",&n))!=EOF){ for(i=0;i<n;…… 题解列表 2020年12月03日 0 点赞 0 评论 542 浏览 评分:6.2
震宇大神的杀毒软件-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,i,j,temp; int a[100…… 题解列表 2020年08月30日 0 点赞 0 评论 596 浏览 评分:9.9
震宇大神的杀毒软件-题解(C++代码) 摘要:解题思路:数组排序,用sort函数就行,特别简单好用。注意事项:参考代码:#include<iostream> #include<algorithm> using namespace std; …… 题解列表 2020年08月16日 0 点赞 0 评论 316 浏览 评分:0.0