打印出所有的“水仙花数”,所谓“水仙花数”是指一个三位数,其各位数字立方和等于该数 本身。例如:153是一个“水仙花数”,因为153=1的三次方+5的三次方+3的三次方。
public class A
{
public static void main(String[] args)
{
// TODO Auto-generated method stub
int x,y;
for(x=100;x<1000;x++)
{
int a=x%10;
int b=(x%100)/10;
int c=x/100;
y=a*a*a+b*b*b+c*c*c;
if(y==x)
{
System.out.println(x);
}
}
}
}