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

Power of Two

时间:2015-08-06 12:30:51      阅读:81      评论:0      收藏:0      [点我收藏+]

标签:

Given an integer, write a function to determine if it is a power of two.

判断一个integer是否为2的幂。

 

 1 public class Solution {
 2     public static boolean isPowerOfTwo(int n) {
 3           double d = n;
 4           
 5           if(d==1){
 6               return true;
 7           }
 8             while(d>=2){
 9                 d = d/2;
10                 if(d==1){
11                     return true;
12                 }
13             }
14             return false;
15         }
16 }

252 ms.

Power of Two

标签:

原文地址:http://www.cnblogs.com/catcoding/p/4707298.html

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