[Lintcode] Ugly number Ugly numbers

Source: Internet
Author: User
Tags lintcode

Write a program to check whether a given number was an ugly number '.

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

Notice

Note that 1 are typically treated as an ugly number.

Example
Given num = 8 return True
Given num = return False

For the original question on Leetcode, please see my previous blog ugly number.

Solution One:

classSolution { Public:    /** * @param num an integer * @return true if Num was an ugly number or false*/    BOOLisugly (intnum) {         while(Num >1) {            if(num%2==0) Num/=2; Else if(num%3==0) Num/=3; Else if(num%5==0) Num/=5; Else return false; }        returnnum = =1; }};

Solution Two:

classSolution { Public:    /** * @param num an integer * @return true if Num was an ugly number or false*/    BOOLisugly (intnum) {        if(Num <=0)return false;  while(num%2==0) Num/=2;  while(num%3==0) Num/=3;  while(num%5==0) Num/=5; returnnum = =1; }};

[Lintcode] Ugly number Ugly numbers

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.