我想知道用户输入的数字是否是 2 的幂。
我的代码不起作用。
public class power_of_two
{
public static void main(String args[])
{
Scanner in=new Scanner(System.in);
System.out.println("Enter the number : ");
int num = in.nextInt();
int other = 1;
if(((~num) & 1) == 1)
{
System.out.println("The number is a power of two");
}
else
{
System.out.println("The number is a NOT A power of two");
}
}
}
让我知道如何找到两个数字的幂。
例如 8 是 2 的幂
。22不是2 的幂,等等。