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

问题描述:

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
实在不知道哪里错了
1个回答 分类:综合 2014-10-19

问题解答:

我来补答
(14.72)3.801 是幂运算,不是乘法运算
 
 
展开全文阅读
剩余:2000