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 pres

来源:学生作业帮助网 编辑:作业帮 时间:2024/08/27 06:56:17
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 pres
xTMoA>LzT=x1݁fBi`BSXj㡔/_pfXTӣ{ywyfv:BdԘ6;So{2)A=? /;^}OdWz$O[id|F!j:RP!Hb9 tV y*DP@tR !@u`MUNS;HĤD0&5yNׂhh}LRIkTW3~ݕx"ɴME\" b ?,JI!E"8; ıJ44W - A[ Z匲2D"y7$G6Ju^iLqƉH?m|?hYNjxS,eJ MYc<%L?θaFx *!% 82]Ex!V+ M Eb,ƴ蜷!Ǎߍmm3 %5K$hU 'mnpzI7Ǜt>nǵ띺ܫ?|rlϖqjAS {]

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 pres
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
实在不知道哪里错了

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 pres
(14.72)3.801 是幂运算,不是乘法运算