打印出所有的"水仙花数"。
所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如:
153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。
153 = 1*1*1 + 5*5*5 + 3*3*3;
提示:
1:采用循环取得所有的三位数。(三位数指的是100-999之间的数)。
2:把每个三位数的个位,十位,百位进行分解。
public class Test1
{
/**
* @param args
*/
public static void main(String[] args)
{
int count=getFlower();
System.out.println(count);
}
public static int getFlower()
{
int count=0;
for(int i=999;i>100;i--)
{
int a=i%10;
int b=(i/10)%10;
int c=(i/100)%10;
if(a*a*a+b*b*b+c*c*c==i) {
count++;
System.out.println(i);}
}
return count;
}
}
|
|