Java: Bisection Method

后端 未结 0 1575
鱼传尺愫
鱼传尺愫 2021-02-01 03:26
package bisection.method;



public class BisectionMethod {

    static float f(float x){
        return (float) (Math.pow(x,2) - 4*x + 4 - Math.log(x));
    }

    stat         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题