求水仙花数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求水仙花数相关的知识,希望对你有一定的参考价值。

/**
     * 求水仙花数
     * @param left
     * @param right
     */
    static void checkFlowerNumber(int left,int right){
        for (int i = left; i <= right; i++) {
            char[] ch = (i+"").toCharArray();
            int sum = 0;
            int num = 0;
            for (int j = 0; j < ch.length; j++) {
                num = Integer.parseInt(ch[j]+"");
                sum += num*num*num;
            }
            if (sum == i) {
                System.out.println(i);
            }
        }
    }

 

以上是关于求水仙花数的主要内容,如果未能解决你的问题,请参考以下文章

Python小代码_9_求水仙花数

c语言编程调用函数求水仙花数

求水仙花数

求水仙花数

如何用VB语言求水仙花数和求1~1000以内的素数

求水仙花数