好久不见高精度相关的题目了 #include <iterator> #include <string> #include<cctype> class Solution { public: // 高精 // 此题没有涉及到正负号的问题 string solve(string s, string t) { string res = ""; int n = s.size(); int m = t.size(); // 反转 reverse(s.begin(), s.end()); reverse(t.begin(), t.end()); int...