我试图不导入要使用的数学类,但我仍在尝试估计常数“e”。据说 e= 1+(1/1!)+(1/2!)+(1/3!)+(1/4!)+(1/5!)+.....
这些是我在顶部的 int
String userInput; int uIp; // this converts the string into int type double e = 2;
然后我问一些问题然后我检查看看不是零退出并且非负继续
While(uIp >0){ final int endTheLoop = 15; int factorialNumber = 1; double e2TheUserInput=0; for(int i = 2; i < endTheLoop; i++){ for(int j = 1; j < i; j++){ factorialNumber = ((i - 1) * factorialNumber); } e = (1/factorialNumber) + e; e2TheUserInput = Math.pow(e,uIp); } }