求一个数字最接近的2的N次幂 给定一个正整数n,现有正整数x,x满足以下条件: x >= n x 是 2的N次幂 求x的最小值。 例如: input: n = 6 output: 8 input: n = 8 output: 8 input: n = 20 output: 32 coldgust大约 4 分钟算法位运算