[求助]编写程序计算数学常数e的值
编写程序计算数学常数e的值,e=1+1/1!+1/2!+1/3!+...。
package example928;
public class ETest {
double e;
double k=1;
public double getResult(int n){
for(int i=1;i<=n;i++){
k*=i;
try{
e+=1/k;
}
catch(Exception e){
e.toString();
}
}
return e+1;
}
public static void main(String args[]){
ETest test=new ETest();
System.out.println(test.getResult(10000));
}
}