From the main function below, write a function that calculates the square root for the input value. The
input has a type of double. For example, squareroot(2) is equal to 1.414.
// Place definition of the function here
You must not use the library . Instead, use the bisection method to calculate the square root.
(http://en.wikipedia.org/wiki/Bisection_method ).
The method has upper limit (max) and lower limit (min) that cover the answer.
When many loops have passed, min and max will get closer to each other and can be used as an answer.
You can stop the loop when max and min is close enough to each other.