i am trying to not import the math class to use but i am still trying to estimate the constant "e". it is said e= 1+(1/1!)+(1/2!)+(1/3!)+(1/4!)+(1/5!)+.....
these are what i have int at the top
String userInput; int uIp; // this converts the string into int type double e = 2;
then i ask some questions then i check to see not zero to exit and non negative to continue
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); } }
while(uIp > 0)- You should have a better way to start/end infinite loops. And what's up with that factorial number calculation? It's NOT generating the results you want (Hint: you don't need that second nested loop). Also, look into recursive functionality, and why a simple naive translation isn't the best option. Splitting this off into it's own routines will help here, especially in separating it from your input. – Clockwork-Muse Sep 10 '12 at 15:43