文章

166

粉丝

68

获赞

829

访问

51.2k

头像
Simple Sorting 题解:大家好,我是set,我自带排序
P1273 上海交通大学机试题
发布于2025年2月16日 10:51
阅读数 211

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n;
    while(cin>>n){
        set<int> a;
        for(int i=0;i<n;i++){
            int x;cin>>x;
            a.insert(x);
        }
        for(auto x:a)cout<<x<<' ';
        cout<<endl;
    }
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发