标签: javascript actionscript-3 math logging pow
我遇到了数学问题。
var a = Math.pow(b, c);
我得到了a和c。我怎样才能获得b?我的数学技能随着时间的推移而枯萎了。
a
c
b
答案 0 :(得分:3)
var b = Math.pow(a,1 / c));
这假设您不需要处理否定数据。