码迷,mamicode.com
首页 > 其他好文 > 详细

求解立方根

时间:2020-07-03 12:28:18      阅读:48      评论:0      收藏:0      [点我收藏+]

标签:class   put   scanner   get   next   system   png   else   lse   

技术图片

 

 

 

System.out.println(Math.pow(input, 1.0/3));

牛顿迭代法

技术图片

 

import java.util.*;

public class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        double in = sc.nextDouble();
        double res = getCubeRoot(in);
        //保留一位小数
        System.out.println(String.format("%.1f",res));
    }
    public static double getCubeRoot(double input){
        if(input == 0){
            return 0;
        }else{
            double x0,x1;
            x0 = input;
            x1 = (2*x0 + input/x0/x0)/3;
            while(Math.abs(x1 - x0) > 0.000001){
                x0 = x1;
                x1 = (2*x0 + input/x0/x0)/3;
            }
            return x1;
        }

    }
}

 

求解立方根

标签:class   put   scanner   get   next   system   png   else   lse   

原文地址:https://www.cnblogs.com/gy7777777/p/13229544.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!