LintCode 题目:3的幂
程序员文章站
2022-07-15 17:05:31
...
URL:https://www.lintcode.com/problem/power-of-three/description
描述
给定一个整数,判断它是否为3的幂。
样例
样例1
输入: n = 0
输出: False
样例2
输入: n = 9
输出: True
在代码段中添加:
for (int i = 0; i < sqrt(n); i++) {
/* code */
if(n==pow(3,i))
return true;
}
return false;
即可:
相关题目:
LintCode 题目:四的乘方
LintCode 题目:2的幂
上一篇: FRP 内网穿透使用教程
下一篇: java -- 接口