栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

2021-10-14

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

2021-10-14

1.水仙花数

水仙花数只是自幂数的一种,严格来说3位数的3次幂数才称为水仙花数。水仙花数是一个三位数其各位数字的立方和等于该数本身。例如 153=1^3+5^3+3^3

程序:

public class TestDemo {
    public static int func(int n) {
        int i = 1;

        for (; i <= n; i++) {
            int tmp = i;//一定要在for里边  要不就错了!!!
            int count = 0;//同上
            while (tmp != 0) {
                count++;
                tmp = tmp / 10;//counnt计算的n位数
            }
            tmp = i;
            int sum = 0;
            while (tmp != 0) {
                sum = sum + (int) Math.pow(tmp % 10, count);
                tmp = tmp / 10;
            }//这个while循环求的每一位次方和
            if (i == sum) {
                System.out.println(i);
            }
        }
        return i;
    }

    public static void main14(String[] args) {
        System.out.println(func(999999));//999999内的水仙花数 

    }

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/325428.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号