共299道题,当前是第263题
下面的 `lowbit(x)` 函数返回整数 $x$ 在二进制表示下最低一位 $1$ 对应的数字,比如:`lowbit(5)=1, lowbit(12)=4`。
int lowbit(int x) { return __________; }