package com.oracle.test;
import org.testng.annotations.Test;
public class IsPowerTest {
public boolean isTwoPower(int num) {
return (num & (num-1)) == 0;
}
@Test
void testIsPower() {
System.out.println(isTwoPower(9));
}
}
输出如下,
package com.oracle.test;
import org.testng.annotations.Test;
public class IsPowerTest {
public boolean isTwoPower(int num) {
return (num & (num-1)) == 0;
}
@Test
void testIsPower() {
System.out.println(isTwoPower(9));
}
}
输出如下,
下一篇:extern “C“ 与函数重载
C基础 面试
原理如果一个数是2的幂,那么一定是00100这种格式2的二进制为 0000 00104的二进制为
无root权限部署LAMP环境  
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M