3的次冪

一句話,慢慢理解:java public boolean isPowerOfThree(int n) { return n == 1 || !(n == 0 || n % 3 != 0) && isPowerOfThree(n / 3); }
相關文章
相關標籤/搜索