Main.java
unknown
java
2 years ago
224 B
1
Indexable
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); } }
Editor is loading...