在不转换为字符串的情况下检查int是否为回文?

时间:2019-03-15 23:59:25

标签: java string int palindrome

public class Palindrome {
    public static void main(String args[]) {
        int x = 121;
        int res = 0;
        while (x > 0) {
            res = res * 10 + (x % 10);
            x /= 10;
        }
        if (x - res == 0) {
            System.out.println("True" + res);
        } else
            System.out.println("False" + res);
    }
}

你好!该代码用于检查整数是否是回文而不将int转换为String。由于某些原因,计算机认为resx不同,尽管两者都代表数字121。预先感谢您的帮助和感谢!

1 个答案:

答案 0 :(得分:1)

你很近。这是基于您所做操作的解决方案:

static bool isPalindrome (int n1, int n2) {
    return getReverseInteger(n1) == n2;
}

static int getReverseInteger (int n) {
    int nReversed = 0;
    while (n > 0) {
      int digit = n % 10;
      nReversed = nReversed * 10 + digit;
      n = (n - digit) / 10;
    }
    return nReversed;
}