#include <stdio.h> #include <string.h> //判断一个数组中的数逆序后是否不变,是返回1,不是返回0 int Re_Able(int Num[], int Length) { int Left = 0; int Right = Length - 1; while (Left < Right) { if (Num[Left] != Num[Right]) { return 0; } Left++; Right--; } return 1; } //对存储在数组Num中和数组Re_Num中的N进制数做N进制加法,运算结果覆盖原来的R...