有些数字的立方的末尾正好是该数字本身。
比如:1,4,5,6,9,24,25,…
请你计算一下,在10000以内的数字中(指该数字,并非它立方后的数值),符合这个特征的正整数一共有多少个。
请提交该整数,不要填写任何多余的内容。
public class Demo2 {
public static void main(String[] args) {
for (long i = 1; i <= 10000; i++) {
boolean sign = true;
long a = i;
long b = i * i * i;
while (a > 0) {
long c = a % 10;
long d = b % 10;
if (c != d) {
sign = false;
break;
}
a = a / 10;
b = b / 10;
}
if (sign) {
System.out.println(i);
}
}
}
}