主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
想想y总会怎么做
2022年3月26日 21:16
先排序 再输出
P1273
回复 0
|
赞 1
|
浏览 4.5k
思路:直接调用sort库函数将数组排序。 然后先输出下标为0的元素,之后再输出是先判断该元素与前一个元素是否相同,若不相等则输出,否则不输出。 C++代码 #include <iostream> #include <algorithm> using namespace std; const int N=1010; int a[N]; int n; int main() { cin>>n; for(int i=0;i<n;i++) cin>>a[i]; ...
lljpwrs
2022年3月5日 17:22
排序后即可
P1273
回复 0
|
赞 0
|
浏览 4.4k
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; const int N = 1000 + 10; int a[N], b[N], n; int main(){ while(scanf("%d", &n) != EOF){ for(int i = 0; i < n; i ++) scanf("%d", &a[i]); sort(a, a + n); ...
题目
Simple Sorting
题解数量
2
发布题解
热门题解
1
先排序 再输出
2
排序后即可