单选题 难度 2
重复的元素会怎样?
下面代码的输出是( )。 set<int> s = {3, 1, 2, 3, 1}; cout << s.size() << " "; for (int x : s) cout << x;