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

342. 4的幂

时间:2020-04-21 18:10:19      阅读:35      评论:0      收藏:0      [点我收藏+]

标签:col   pow   code   bool   int   style   span   isp   nbsp   

1 class Solution 
2 {
3 public:
4     bool isPowerOfFour(int num) 
5     {
6         return (num > 0) && ((num & (-num)) == num) && (num % 3 == 1);
7     }
8 };

 

342. 4的幂

标签:col   pow   code   bool   int   style   span   isp   nbsp   

原文地址:https://www.cnblogs.com/yuhong1103/p/12746247.html

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