Question: Java 2.01) The Babylonian algorithm to compute the square root of a positive number n is asfollows: 1. Make a guess at the answer (you

Java
2.01) The Babylonian algorithm to compute the square root of a positive number n is asfollows: 1. Make a guess at the answer (you can pick n/2 as your initial guess). 2. Computer and guess 3. Set guess - (guess +r)/2 4. Go back to step 2 for as many iterations as necessary. The more you repeat steps 2 and 3, the doser quess will become to the square root of n Write a program that inputs a double for n, iterates through the Babylonian algorithm FIVE times, and outputs the answer as a double to two decimal places. Your answer will be most accurate for small values of n. SAMPLE RUN #4: java BabylonianAlgo Interactive Session Elidelables Highlight: None Show Highlighted Only Intern et to compute su eroot:64
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
