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

leetcode 263

时间:2016-08-09 13:40:38      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 1 class Solution {
 2 public:
 3     bool isUgly(int num) {
 4         if(num==0)return false;
 5         while(num%2==0) 
 6         num/=2;
 7         while(num%3==0)
 8         num/=3;
 9         while(num%5==0)
10         num/=5;
11         if(num==1)
12         return true;
13         return false;
14     }
15 };

 

leetcode 263

标签:

原文地址:http://www.cnblogs.com/thefirstfeeling/p/5752731.html

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