The Babylonian algorithm to compute the square root of a number n is as follows:
ID: 441752 • Letter: T
Question
The Babylonian algorithm to compute the square root of a number n is as follows: 1. Make a guess at the answer (you can pick n/2 as your initial guess). 2. Compute r = n / guess 3. Set guess = (guess +r) / 2 4. Go back to step 2 for as many iterations as necessary. The more that steps 2 and 3 are repeated, the closer guess will become to the square root of n. Write a program that inputs a double for n, iterates through the Babylonian algorithm until the guess is within 1% of the previous guess, and outputs the answer as a double to two decimal places. Your answer should be accurate even for large values of n. Include comments in your code. Using the book "Absolute C++" by Walter Savitch 5th edition and this is number 9 on page 96Explanation / Answer
/* EASY AND SIMPLE CODE*/
Related Questions
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.