Leet Code 263. Ugly Number
Posted dacc123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leet Code 263. Ugly Number相关的知识,希望对你有一定的参考价值。
class Solution {
public:
bool isUgly(int num) {
if(num<=0)
return false;
while(num!=1)
{
if(num%2==0)
{
num/=2;
continue;
}
else if(num%3==0)
{
num/=3;
continue;
}
else if(num%5==0)
{
num/=5;
continue;
}
return false;
}
return true;
}
};
以上是关于Leet Code 263. Ugly Number的主要内容,如果未能解决你的问题,请参考以下文章