最小三个数 (C语言代码)(占沙发!第一个题解!) 摘要:解题思路:先接受,后用冒泡排序,直接输出前三个。注意事项:参考代码:#include<stdio.h>int main(){ int a[100],n,i=0,j,p; scanf("%d",&n);…… 题解列表 2018年08月19日 4 点赞 0 评论 684 浏览 评分:0.0
最小三个数 (C语言代码)交换排序法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i=0; int a[1000]; scanf("%d",&n); for(int q=0;q<n;…… 题解列表 2018年08月29日 0 点赞 0 评论 592 浏览 评分:0.0
可恶... 第一c++描述:最小三个数 (C++代码) 摘要:解题思路:注意事项:参考代码: #include<iostream>#include<algorithm>using namespace std;int main(){ int i,n; …… 题解列表 2018年09月25日 4 点赞 0 评论 738 浏览 评分:0.0
最小三个数 (C++代码)STL水分用 摘要:解题思路: 输入------STL:sort排序-------输出前三个数 sort在STL库中是排序函数,有时冒泡、选择等O(N^2)算法会超时时,我们可以使用STL中的快速排序O(N …… 题解列表 2018年11月19日 0 点赞 0 评论 490 浏览 评分:0.0
最小三个数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,s,a[100],n,t; &nb 题解列表 2019年04月11日 0 点赞 0 评论 532 浏览 评分:7.3
最小三个数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[1000],i,k,t,j;scanf("%d",&n);fo…… 题解列表 2019年04月15日 0 点赞 0 评论 408 浏览 评分:0.0
Python是世界上最好的语言 (Python代码) 摘要:解题思路: 我说Python是世界上最好的语言,有人不服吗?注意事项: 不服的都不好看,谢谢参考代码:n=int(input()) for i in sorted(list(map(in…… 题解列表 2019年05月08日 2 点赞 0 评论 865 浏览 评分:4.0
最小三个数-题解(C语言代码) 摘要:#include #include #include #include int main() { int a,b,c,d; int x[100]; scanf("%d",&a);…… 题解列表 2019年08月30日 0 点赞 0 评论 731 浏览 评分:0.0
最小三个数-题解(C++代码) 摘要:**简单的冒泡排序** ```cpp #include #include #include using namespace std; int main() { …… 题解列表 2019年09月02日 0 点赞 0 评论 687 浏览 评分:9.9
分享与随笔 摘要:方法一 思路:先找出最大值与最小值,然后输出最小值,用最大值覆盖最小值,再次循环,记录输出个数。 #define _CRT_SECURE_NO_WARNINGS #inclu…… 题解列表 2019年11月28日 0 点赞 0 评论 582 浏览 评分:6.0