/*
请输出满足这样条件的五位数。
个位=万位
十位=千位
个位+十位+千位+万位=百位
*/
class ShuTest
{
public static void main(String[] args)
{
for (int x=10000 ;x<100000 ; x++)
{
int a=x/10000%10;
int b=x/1000%10;
int c=x/100%10;
int d=x/10%10;
int e=x%10;
if (a==e&&b==d&&c==a+b+d+e)
{
System.out.println(x);
}
}
}
}
|
|