题解 1102: 明明的随机数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

1102: 明明的随机数

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;set<int>st;intmain(){&nbsp;&……

明明的随机数

摘要:```cppincludeincludeincludeincludeusingnamespacestd;constintN=110;intn;intq[N];intmain(){scanf(&ldqu……

明明的随机数(简单解法)

摘要:解题思路:分为三步:第一步:得到数组数据第二步:去除重复的数字,用101表示第三步:把第一组去重后的数据放入第二组第四步:排序第五步:输出数组注意事项:参考代码:#include<iostrea……

排序+新设数组

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cmath>#include<algorithm>#include<cst……