#include <iostream> #include<math.h> using namespace std; bool pingf(int n) { if (n < 10)return true; //; int x = n, y = 0; while (x != 0) { //先识别几位,取最高位 x = x / 10; y++; } if (y % 2 != 0) { //y为奇数 while (y != 1) { int a = n % 10; int b = n / pow(10, y - 1); n = n - b * pow(10, y - 1)...