|
楼主 |
发表于 2022-7-18 19:57:44
|
显示全部楼层
- #include<bits/stdc++.h>
- using namespace std;
- int main()
- {
- int a[1001]={0},t,n,s=0,i,max=0;
- cin>>n;
- for(i=0;i<n;i++)
- {
- cin>>t;
- if(a[t]==0)
- s++;
- a[t]++;
- if(max<t)
- max=t;
- }
- cout<<s<< endl;
- for(i=0;i<=max;i++)
- {
- if(a[i])
- cout<<i<<" ";
- }
- cout<<endl;
- }
-
复制代码 |
|