Main.java
Anonymous
java
03/14/2023 5:46 AM
300 B
9
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...