public class SquareRoot {

  // code for exercise 9

  public static void main(String[] args) {

    System.out.print("Please enter a number -> ");

    float f = IOUtil.readFloat();
    float result = Newton.newtonSqrt(f);

    System.out.println("Sqrt of " + f + " is: " + result);

  }

}


