Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在这里有一个心理障碍,代数不是我的事,你能告诉我如何重写下面的 JavaScript 代码来派生变量,,c就a和b?:
c
a
b
a = Math.pow(b, c); c = ?
谢谢!
c = Math.log(a)/Math.log(b)
对数。你想要a的对数。B 是底,c 是指数,所以
日志b a = c