class NumberText
{
public static void main(String[] args)
{
//用for循环确定int范围
for (int x = 10000;x <= 99999;x++)
{
int g = x%10;//个位上的数
int s = x/10%10;//十位上的数
int b = x/10/10%10;//百位上的数
int q = x/10/10/10%10;//千位上的数
int w = x/10/10/10/10%10;万位上的数
if((g == w) && (s == q) && (g + s + q + w == b))
{
System.out.println(x);
}
}
}
} 作者: 王海彬 时间: 2015-9-13 23:17
我看到了有些社招的题目跟这个有点搭边