在Java中,查找个位和十位相同的数可以使用以下代码:
public static void main(String[] args) { for (int i = 10; i< 100; i++) { int onesDigit = i % 10; int tensDigit = (i / 10) % 10; if (onesDigit == tensDigit) { System.out.println(i); } } }
这段代码使用了for循环,枚举了10到99之间的所有两位数。然后使用求余运算和整除运算得到了个位和十位的数字。如果个位和十位相同,则将该数打印出来。
使用这个代码可以得到如下输出:
11 22 33 44 55 66 77 88 99
这些数的个位和十位相同,是两位数中的“回文数”。