前提,x > 0。
判断一个整数x是否是2的N次方。
方法之一是判断x & (x - 1)==0。若为True,则x是2的N次方;若为False,则x不是2的N次方。
#include<iostream>
using namespace std;
int main()
{
int x;//x>0.
while (cin >> x)
{
if ((x&(x - 1)) == 0)
{
cout << x << " 是2的N次方" << endl;
}
else
{
cout << x << " 不是2的N次方" << endl;
}
}
return 0;
}