Given an integer, write a function to determine if it is a power of two.
class Solution { public: bool isPowerOfTwo(int n) { if(n<=0) return false; while(n>1) { if(n%2!=0) return false; n/=2; } return true; } };
负数和0都不是power of 2.