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

Leetcode 231: Power of Two

时间:2017-12-03 13:05:53      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:function   color   int   div   public   false   turn   determine   power   

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

 

 1 public class Solution {
 2     public bool IsPowerOfTwo(int n) {
 3         if (n <= 0) return false;
 4         if (n <= 2) return true;
 5         
 6         while (n > 2)
 7         {
 8             if (n % 2 != 0) return false;
 9             n = n / 2;
10         }
11         
12         return true;
13     }
14 }

 

Leetcode 231: Power of Two

标签:function   color   int   div   public   false   turn   determine   power   

原文地址:http://www.cnblogs.com/liangmou/p/7965674.html

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