原题链接 Note:代码如下 class Solution { public: bool isUgly(int n) { if(!n) return false; while(n % 2 == 0) n /= 2; while(n % 3 == 0) n /= 3; while(n % 5 == 0) n /= 5; if(n == 1) return true; return false; } };