Answer to Question #64446 in C# for ceazer

Question #64446
Write an application that estimates the value of the mathematical constant e by using the following formula. Allow the user to enter the number of terms to calculate.

e= 1 + 1/1! + 1/2! + 1/3! + ...
1
Expert's answer
2017-01-12T11:15:19-0500
int input = Convert.ToInt32(Console.ReadLine());
double result = 1;
for(int i = 1; i <= input; i++){
int fact = 1;
for (int j = 2; j <= i; j++)
fact *= i;
result += 1.0/fact;
}

Console.WriteLine(result);

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS