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