+ 2
find the sum of the given series based on addition, division and factorial.
find the sum of the given series based on addition, division and factorial. Create a separate function to compute factorial and results. (1/2!)+(2/3!)±(3/4!)...+6/7!
2 Antworten
+ 3
This is a nice practice, please let's see your try.
Hint: you can solve this using a function and a loop, the function should have a parameter and return its factorial (pass it by a value), now coming to the loop, the loop should have some code to iterate based on your series condition.