解题思路:
注意事项:
参考代码:
#include <bits/stdc++.h>
using namespace std;
set<int>st;
int main()
{
int n,m;
cin>>n;
while(n--){
cin>>m;
st.insert(m);
}
int cnt=st.size();
cout<<cnt<<endl;
for(set<int>::iterator it = st.begin();it!=st.end();it++){
printf("%d ",*it);
}
return 0;
}
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.11 (C语言代码)浏览:804 |
简单的a+b (C语言代码)浏览:783 |
字符串输入输出函数 (Java代码)浏览:1498 |
字符串问题 (C语言代码)浏览:1635 |
C语言考试练习题_排列 (C语言代码)浏览:767 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:674 |
众数问题 (C语言代码)浏览:911 |
Cylinder (C语言描述+详细分析)浏览:3375 |
Hello, world! (C语言代码)浏览:766 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:438 |