如何在 C# 中判断一个数字是否是 2 的幂次方?


2 的幂次方是指形式为 2n 的数,其中 n 为整数

以 2 为底数,以整数 n 为指数的指数运算结果。

n2n
01
12
24
38
416
532

示例 1

 运行演示

class Program {
   static void Main() {
      Console.WriteLine(IsPowerOfTwo(9223372036854775809));
      Console.WriteLine(IsPowerOfTwo(4));
      Console.ReadLine();
   }
   static bool IsPowerOfTwo(ulong x) {
      return x > 0 && (x & (x - 1)) == 0;
   }
}

输出

False
True

示例 2

 运行演示

class Program {
   static void Main() {
      Console.WriteLine(IsPowerOfTwo(9223372036854775809));
      Console.WriteLine(IsPowerOfTwo(4));
      Console.ReadLine();
   }
   static bool IsPowerOfTwo(ulong n) {
      if (n == 0)
         return false;
      while (n != 1) {
         if (n % 2 != 0)
            return false;
         n = n / 2;
      }
      return true;
   }
}

输出

False
True


更新时间: 2020-08-08

532 次浏览

开启你的 职业生涯

完成课程后获得认证

开始学习
广告