Main.java
public class Main { public static void main(String[] args) { double left = Math.random() * -10; double right = Math.random() * 10; Bisection testing = new Bisection(left,right,0.00001); } }
public class Main { public static void main(String[] args) { double left = Math.random() * -10; double right = Math.random() * 10; Bisection testing = new Bisection(left,right,0.00001); } }