#include <iostream> #include <iterator> #include <string> #include <algorithm> #include <climits> using namespace std; int rev(int x){ string s= to_string(x); reverse(s.begin(), s.end()); //判断是否溢出,溢出置0 int max = INT_MAX; string t1 = to_string(INT_MAX);...