作者:da-ben-qi-e 摘要:bool isPowerOfTwo(int n){ if (n<=0){ return false; } double temp1 = log2(n); int temp2 = (int) temp1; ...
確定! 回上一頁