#include using namespace std; bool judege(int n) { //return n & (n - 1) == 0; return (n & (n - 1) )== 0; } int main() { cout<< judege(1024)<