#6.求水仙花數

solution發表於2021-09-09
public class TestNNN {
    static int a = 0;
    static int b = 0;
    static int c = 0;
    public static void main(String[] args) {
        /**
         * 水仙花數
         * 1. 一定是3位數
         * 2. 每一位的立方,加起來恰好是這個數本身,比如153=1*1*1+5*5*5+3*3*3
         */
        for (int i = 100; i < 999; i++) {
            a = i / 100; //百位
            b = i / 10 % 10; //十位
            c = i % 10; //個位
            double sum = Math.pow(a, 3) + Math.pow(b, 3) + Math.pow(c, 3);
            if (sum == (double) i) {
                System.out.println("水仙花數有:" + i);
            }
        }
    }
}

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2459/viewspace-2822872/,如需轉載,請註明出處,否則將追究法律責任。

相關文章