Computer Science, asked by dragonslayer1bee, 10 days ago

Write a program in java to print the sum of the following series:
S=1+3/2!+5/3!+7/4!+... to n.

Answers

Answered by prasadkshitij755
2

The outer loop provides the denominator in the series. The inner loop calculates factorial of each no. provided by outer loop.

Do remember to make f equal to 1

hope it works

Attachments:
Similar questions