1064 朋友數 (20 分)
阿新 • • 發佈:2019-04-29
main 朋友 end using while ace names begin auto
#include <iostream> #include <set> // set 集合中沒有重復的元素 using namespace std; int cmp(int t) { int sum = 0; while (t != 0) { sum += t % 10; t /= 10; } return sum; } int main() { int n, x; set <int> st; cin >> n; while (n--) { cin>> x; st.insert(cmp(x)); } cout << st.size() << endl; for (auto it = st.begin(); it != st.end(); it++) { // auto自動推斷變量類型 if (it != st.begin()) { cout << ‘ ‘; } cout << *it; } cout << endl;return 0; }
1064 朋友數 (20 分)