码迷,mamicode.com
首页 > 其他好文 > 详细

263. Ugly Number

时间:2018-05-25 14:07:09      阅读:139      评论:0      收藏:0      [点我收藏+]

标签: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.

263. Ugly Number

标签:with   cin   ret   ati   false   return   std   color   bool   

原文地址:https://www.cnblogs.com/zhuangbijingdeboke/p/9087379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!