Question: 10. This problem is very simple, just think about it first! Write a program called problem10.cpp that computes the value of pi. The value of

10. This problem is very simple, just think about it first! Write a program called problem10.cpp that computes the value of pi. The value of pi can be determined with the following equation. --11 + 13 2n+1) Create an algorithm that for a given input value n (you can assume that n is a positive integer). Hint: In other words, simply input some value n, and you are even assuming that the user will input it as a positive number. Calculate the series through to the 1/(2n+1) term. Hint: can you create a loop that simply counts from 1 to n?1 am sure you can. Can you make the value of the counter increment by 2 every time instead of 1? Yes you can. We saw this in class. Every iteration in the loop divide 1 by the value of the counter. I hope you get the idea. If not, just ask your TA. You can assume that n is entered correctly and do not need to test for error conditions. Your solution can use while statements and if statements. You may use only addition, subtraction, multiplication, division and you must put the answer in "result". (20 points)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
