java打印水仙花数

题目:打印出所有的"水仙花数",所谓"水仙花数"是指一个三位数,其各位数字立方和等于该数本身。例如:

153是一个"水仙花数",因为153=1的三次方+5的三次方+3的三次方。

1.程序分析:利用for循环控制100-999个数,每个数分解出个位,十位,百位。

public class Test_3 {

       /**

        * @param args

        */

       public static void main(String[] args) {

              // TODO 自动生成方法存根

              int a=0,b=0,c=0;

              for(int i=100;i<=999;i++){

                     a=i/100;

                     b=i%100/10;

                     c=i%10;

                     if(Math.pow(a, 3)+Math.pow(b, 3)+Math.pow(c, 3)==i){

                            System.out.println(i);

                     }

              }

       }

}

posted @ 2011-04-25 19:52  白龙龙  阅读(1242)  评论(0编辑  收藏  举报