题解 | #求解立方根#

求解立方根

http://www.nowcoder.com/practice/caf35ae421194a1090c22fe223357dca

数学迭代问题
import java.util.Scanner;
public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()){
            double input = sc.nextDouble();
            double  n = getCubeRoot(input);
            System.out.printf("%.1f",n);
        }
    }
    public static double getCubeRoot(double input) {
        if ( input == 0) {
            return 0;
        }
        double x0 = input;
        double x1 = (2*x0 + input/x0/x0)/3;
        while (Math.abs(x1 - x0) > 0.001) {
            x0 = x1;
            x1 = (2*x0 + input/x0/x0)/3;
        }
        return x1;
    }
}


全部评论

相关推荐

11-09 17:30
门头沟学院 Java
TYUT太摆金星:我也是,好几个华为的社招找我了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务