Question: 18.4 (Sum series) Write a recursive method to compute the following series: m(i)= 1 + 1/2 + 1/3 + ... + 1/i Write a test
18.4 (Sum series) Write a recursive method to compute the following series: m(i)= 1 + 1/2 + 1/3 + ... + 1/i Write a test program that displays m(i) for i = 1, 2, . . ., X each on it's line and where X is entered by the user.
EXAMPLE
Enter the last positive integer you want m(i) to be calculated for:23
m(1) = 1.00
m(2) = 1.50
m(3) = 1.83
m(4) = 2.08
m(5) = 2.28
m(6) = 2.45
m(7) = 2.59
m(8) = 2.72
m(9) = 2.83
m(10) = 2.93
m(11) = 3.02
m(12) = 3.10
m(13) = 3.18
m(14) = 3.25
m(15) = 3.32
m(16) = 3.38
m(17) = 3.44
m(18) = 3.50
m(19) = 3.55
m(20) = 3.60
m(21) = 3.65
m(22) = 3.69
m(23) = 3.73
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
