まくろぐ
更新: / 作成:

n が 2 のべき乗か判定する

long powerof2(long n) {
    return (n > 0) && ((n & (n - 1)) == 0);
}
まくろぐ
サイトマップまくへのメッセージ