码迷,mamicode.com
首页 > 其他好文 > 详细

202. 快乐数

时间:2019-08-07 09:18:23      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:数字   set   happy   nta   返回   个数   class   boolean   integer   

class Solution {
    public boolean isHappy(int n) {
        Set<Integer> set=new HashSet<Integer>();
        int temp=n;
        set.add(temp);
        while(true)
        {
            temp=sum(temp);
            if(temp==1)
                return true;
            if(set.contains(temp))
                return false;
             set.add(temp);
        }
    }
    //求出这个n的各个位置数字的平方和,返回这个数
    public int sum(int n)
    {
        int sum=0;
        int y=0;    //余数10
        while(n!=0)
        {
            y=n%10;
            n=n/10;
            sum+=y*y;
        }
        return sum;
    }
}

202. 快乐数

标签:数字   set   happy   nta   返回   个数   class   boolean   integer   

原文地址:https://www.cnblogs.com/cold-windy/p/11313077.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!