作业帮 > 综合 > 作业

java的一道基本的数学题.自己运行的结果和答案不一样,不知道哪里错了

来源:学生作业帮 编辑:拍题作业网作业帮 分类:综合作业 时间:2024/05/01 22:06:26
java的一道基本的数学题.自己运行的结果和答案不一样,不知道哪里错了
Create a new project called ComputeThis having a class called Tester. The main method of Tester should calculate the value of the following formulas and present the answers as shown:
d2 = (14.72)3.801 + ln 72 …ln means log base e
The output of your code should appear as follows:
d2 = 27496.988867001543
Verify these answers with a calculator.
------------------
我的代码:
public class Tester {
public static void main(String args[])
{
double c = 14.72*3.801;
double d = Math.log(72);
System.out.println("d2 = "+(c+d));
}
}
-----------
我运行得出60.2.
而题目上要求应该出27496.988867001543
实在不知道哪里错了
(14.72)3.801 是幂运算,不是乘法运算