标签:return ems turn == int etc continue public leetcode
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;
}
};
标签:return ems turn == int etc continue public leetcode
原文地址:https://www.cnblogs.com/dacc123/p/12724616.html