标签:with cin ret ati false return std color bool
1 static int wing=[]() 2 { 3 std::ios::sync_with_stdio(false); 4 cin.tie(NULL); 5 return 0; 6 }(); 7 8 class Solution 9 { 10 public: 11 bool isUgly(int num) 12 { 13 if(num<1) 14 return false; 15 while(num%2==0) num/=2; 16 while(num%3==0) num/=3; 17 while(num%5==0) num/=5; 18 return num==1; 19 } 20 };
判定一个数中的因子是否只有235,将所有235分解出来就行,看最终结果是否为1.
标签:with cin ret ati false return std color bool
原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9087379.html