Loading... ``` #include <iostream> #include <algorithm> using namespace std; string operator+(string a, string b) { if (a.length() < b.length()) return b + a; reverse(a.begin(), a.end()); reverse(b.begin(), b.end()); string ans; int t = 0; for (int i = 0; i < a.length(); ++i) { t += a[i] - '0'; if (i < b.length()) t += b[i] - '0'; ans.push_back(t % 10 + '0'); t /= 10; } if (t) ans.push_back(t + '0'); reverse(ans.begin(), ans.end()); return ans; } string a, b; int main () { ios::sync_with_stdio(0); cin.tie(0); cin >> a >> b; cout << a + b; return 0; } ``` 最后修改:2024 年 08 月 08 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏