美文网首页
Power of Three

Power of Three

作者: aemaeth | 来源:发表于2016-03-13 16:14 被阅读0次

Given an integer, write a function to determine if it is a power of three.
Follow up:Could you do it without using any loop / recursion?
bool isPowerOfThree(int n) { //return ( n>0 && 1162261467%n==0); return fmod(log10(n)/log10(3), 1)==0; }

相关文章

网友评论

      本文标题:Power of Three

      本文链接:https://www.haomeiwen.com/subject/zexflttx.html