acgo题库
  • 首页
  • 题库
  • 学习
  • 天梯
  • 备赛

    竞赛

    • CSP-J/S
    • 蓝桥杯

    考级

    • GESP
    • CPA
    • 电子学会考级
  • 竞赛
  • 讨论
  • 团队
  • 商城
登录
注册
题目详情提交记录(0)
  • ????????????????????

    #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; set<int> st; for (int i = 1; i <= n; i++) { int x; cin >> x; st.insert(x); } for(auto i : st){ cout << i << " "; } return 0; } 错了? #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; set<int> st; for (int i = 1; i <= n; i++) { int x; cin >> x; st.insert(x); } } 也错了?

    userId_undefined
    ༺ཌༀ༒死神.鬼刃.水门༒ༀད༻
    倔强青铜空间掌握者
    2阅读
    0回复
    1点赞
暂无数据

提交答案之后,这里将显示提交结果~

首页