Bootstrap

C语言 | Leetcode C语言题解之第326题3的幂

题目:

题解:

bool isPowerOfThree(int n){
    int count=0;
    while(n){
        count+=n%3;
        n/=3;
    }return count==1?true:false;

}
;