//最常见的方法 int getsum(int x){ int res = 0; while(x){ res += x % 10; x /= 10; } return res; } //个人理解 int getsum(int x){ int res = 0; string t = to_string(x); for(auto c : t) res += c - '0'; return res; }
%%%
%%%