function powerfind(n) local powers = {} i = 1 while i <= n do if bit.band(i, n) then -- bitwise and check table.insert(powers, ...
確定! 回上一頁