博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
水仙花数java实现
阅读量:5977 次
发布时间:2019-06-20

本文共 663 字,大约阅读时间需要 2 分钟。

hot3.png

public class shuiXianFlowers {

    public int a;
    public int b;
    public shuiXianFlowers(int a, int b) {
        super();
        this.a = a;
        this.b = b;
    }
    public int getA() {
        return a;
    }
    public void setA(int a) {
        this.a = a;
    }
    public int getB() {
        return b;
    }
    public void setB(int b) {
        this.b = b;
    }
    public void isShuiXianFloewr() {
     for (int i = this.getA(); i <= this.getB(); i++) {
            if (isEqual(i)) {
                System.out.print(i + "");
            }
        }
    }
    public boolean isEqual(int num) {
        int num2 = num;
        int temp = 0;
        int a = 0;
        while (num > 0) {
            temp += num % 10;
            num = num / 10;
            a += temp * temp * temp;
        }
        if (a == num2)
            return true;
        else
            return false;
    }
  

 

}

转载于:https://my.oschina.net/fangqiao/blog/647052

你可能感兴趣的文章
mysql开启binlog
查看>>
设置Eclipse编码方式
查看>>
分布式系统唯一ID生成方案汇总【转】
查看>>
并查集hdu1232
查看>>
Mysql 监视工具
查看>>
Linux Namespace系列(09):利用Namespace创建一个简单可用的容器
查看>>
博客搬家了
查看>>
Python中使用ElementTree解析xml
查看>>
linux的日志服务器关于屏蔽一些关键字的方法
查看>>
mysql多实例实例化数据库
查看>>
javascript 操作DOM元素样式
查看>>
HBase 笔记3
查看>>
【Linux】Linux 在线安装yum
查看>>
Atom 编辑器系列视频课程
查看>>
[原][osgearth]osgearthviewer读取earth文件,代码解析(earth文件读取的一帧)
查看>>
mybatis update返回值的意义
查看>>
expdp 详解及实例
查看>>
通过IP判断登录地址
查看>>
深入浅出JavaScript (五) 详解Document.write()方法
查看>>
Beta冲刺——day6
查看>>