判断是否是2的阶次方

作者:追风剑情 发布于:2019-3-15 23:31 分类:Algorithms

示例

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace TSortTest
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. for (int i = -2; i <= 16; i++)
  13. Console.WriteLine("{0}={1}", i, IsTwoPower(i));
  14.  
  15. Console.Read();
  16. }
  17.  
  18. // 判断x是否为2的阶次方
  19. public static bool IsTwoPower(int x)
  20. {
  21. return (x > 0) && (x & (x - 1)) == 0;
  22. }
  23. }
  24. }

运行测试
111.png

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号