Java经典算法40题 – 题目3

【程序3】题目:
打印出所有的 “水仙花数 “,所谓 “水仙花数 “是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 “水仙花数 “,因为153=1的三次方+5的三次方+3的三次方。

package org.sixlab.algorithm40;

public class DaffodilsNumber {
    public static void main(String\[\] args) {
        for (int i = 100; i < 1000; i++) {
            if (isDaffodilsNumber(i)) {
                System.out.println(i);
            }
        }
    }

    private static boolean isDaffodilsNumber(int num) {
        String numString = String.valueOf(num);
        int plus = 0;
        for (int i = 0; i < numString.length(); i++) {
            int a = (int) (num / (Math.pow(10, i)));
            a %= 10;
            plus += (int) Math.pow(a, 3);
        }
        if (num == plus) {
            return true;
        } else {
            return false;
        }
    }
}
posted @ 2014-04-02 23:25  六楼的雨  阅读(9)  评论(0编辑  收藏  举报