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

Power of Three

时间:2016-07-02 06:58:00      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

 1 public class Solution {
 2     public boolean isPowerOfThree(int n) {
 3         while (n > 1) {
 4             if (n % 3 != 0) {
 5                 return false;
 6             }
 7             n /= 3;
 8         }
 9         return n == 1;
10     }
11 }

 

 

1 public class Solution {
2     public boolean isPowerOfThree(int n) {
3         double a = Math.log(n) / Math.log(3);
4         return Math.abs(a - Math.rint(a)) <= 0.00000000000001;
5     }
6 }

 

Power of Three

标签:

原文地址:http://www.cnblogs.com/shuashuashua/p/5634704.html

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