这题的主要思路有两个:第一, 应用java 的数学库,Math.log10;第二,判断tem 和 整数形式的tem 是否相同,如果非3的幂,tem会出现小数位。从而不相等返回false.
class Solution {
public boolean isPowerOfThree(int n) {
double tem = Math.log10(n) / Math.log10(3);
return (tem - (int)(tem)) == 0?true:false;
}
}