Description:

Write a program to check whether a given number is an ugly number.

Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6, 8 are ugly while 14 is not ugly since it includes another prime factor 7.

Note that 1 is typically treated as an ugly number.

寻找丑数:

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

 

相关文章:

  • 2021-06-19
  • 2021-07-12
  • 2021-07-28
  • 2021-11-29
  • 2021-10-31
  • 2022-02-22
  • 2022-12-23
  • 2021-08-23
猜你喜欢
  • 2021-09-10
  • 2021-06-18
  • 2022-01-27
  • 2021-05-24
  • 2022-01-11
  • 2021-07-04
  • 2022-01-07
相关资源
相似解决方案