判断数字n是否为回文数 回文数就是指各位数字左右对称的整数。例如:121,676,94249等。 算法的实现就是将数字n“颠倒”一下,构成数字m,判断m与n是否相等。 bool symm(unsigned n) { unsigned i = n; unsigned m = 0; while (i>0) { m = m * 10 + i % 10; } return m == n; }