leetcode-Ugly Number

来源:互联网 发布:手机免费注册淘宝店铺 编辑:程序博客网 时间:2024/05/21 00:52

一直除以2,3,5,即可。

public class Solution {    public boolean isUgly(int num) {if(num <= 0)    return false;        while(num != 1){            if(num %2 == 0)                num = num /2;            else if(num % 3== 0)                num = num /3;            else if(num % 5 == 0)                num = num/5;            else{                return false;            }        }        return true;    }}


0 0
原创粉丝点击