package bisection.method; public class BisectionMethod { static float f(float x){ return (float) (Math.pow(x,2) - 4*x + 4 - Math.log(x)); } stat