Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I'm not sure where I went wrong. Please put in C++ format. Thank you in advance. Project 2: Ancient square root algorithm. The Babylonian algorithm

image text in transcribedI'm not sure where I went wrong. Please put in C++ format. Thank you in advance.

Project 2: Ancient square root algorithm. 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 an integer for n, iterates through the Babylonian algorithm until guess is within 1% of the previous guess, and outputs the answer as a double. SAMPLE RUN \#1: . /ETest Highlight: Show Highlighted Only Enter the number whose square root is to be computed: 25 The.estimate of the square root.of 25.00 is 5.00

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

MySQL Crash Course A Hands On Introduction To Database Development

Authors: Rick Silva

1st Edition

1718503008, 978-1718503007

More Books

Students also viewed these Databases questions

Question

11. Identify the stage of beyond duality in Gone With the Wind.

Answered: 1 week ago