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.
有人可以告诉我如何使用 java 程序查找数字的反对数吗?我是这个java的新手, Math.log(10)给出了日志值。现在我想获取这个输出并使用反对数来验证程序是否给出了正确的值。请帮助我。
Math.log(10)
数学上:e^(ln x) = x
在java中:
Math.pow(Math.E, (Math.log(x)) == x; //equals true
您可以使用 Java 中的对数类来计算对数和反对数。此处提供了更多相关信息。