// program to find the root of a non-quad poly // hussein suleman // 29 march 2004 public class problem12 { public static void main (String [] args) throws java.io.IOException { // calc and output root Bisection bis = new Bisection (); double root = bis.findRoot (0, 1000); System.out.println ("The root is: " + root); System.out.println ("f(" + root + ") is " + bis.f(root)); } }