最小三个数 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,s,a[100],n,t; &nb 题解列表 2019年04月11日 0 点赞 0 评论 532 浏览 评分:7.3
分享与随笔 摘要:方法一 思路:先找出最大值与最小值,然后输出最小值,用最大值覆盖最小值,再次循环,记录输出个数。 #define _CRT_SECURE_NO_WARNINGS #inclu…… 题解列表 2019年11月28日 0 点赞 0 评论 582 浏览 评分:6.0
Python是世界上最好的语言 (Python代码) 摘要:解题思路: 我说Python是世界上最好的语言,有人不服吗?注意事项: 不服的都不好看,谢谢参考代码:n=int(input()) for i in sorted(list(map(in…… 题解列表 2019年05月08日 2 点赞 0 评论 865 浏览 评分:4.0
最小三个数-题解(C语言代码)最强解法。 摘要:解题思路:注意事项:个人感觉题目有问题,我的这个代码提交不成功,不知道为什么,完全符合题目条件(最后一个数后没有空格),但是我发现好多题解都没有注意到这个问题,所以大家仅供参考我的代码,觉得有帮助请不…… 题解列表 2020年08月16日 0 点赞 0 评论 418 浏览 评分:0.0
可恶... 第一c++描述:最小三个数 (C++代码) 摘要:解题思路:注意事项:参考代码: #include<iostream>#include<algorithm>using namespace std;int main(){ int i,n; …… 题解列表 2018年09月25日 4 点赞 0 评论 738 浏览 评分:0.0
题解 1856: 最小三个数 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int n; scanf("%d",&n); if(n >= 3 && …… 题解列表 2022年04月02日 0 点赞 0 评论 117 浏览 评分:0.0
1856: 最小三个数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; int arr[100]…… 题解列表 2023年10月08日 0 点赞 0 评论 46 浏览 评分:0.0
最小三个数-题解(C++代码) 摘要:```cpp #include using namespace std; int main(){ int n; cin>>n; int *a=new int[n]…… 题解列表 2020年03月28日 0 点赞 0 评论 273 浏览 评分:0.0
最小三个数 摘要:解题思路:先从小到大排序 ,在输出使用冒泡排序参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n]; int i,j,t;…… 题解列表 2023年03月19日 0 点赞 0 评论 83 浏览 评分:0.0
最小三个数-题解(C语言代码) 摘要:解题思路:注意事项:注意双重for循环的循环事项参考代码:#include <stdio.h> int main() { int n,m,i,j,a[100]; scanf("%d",&n…… 题解列表 2021年02月06日 0 点赞 0 评论 107 浏览 评分:0.0