欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

HJ107:求解立方根

程序员文章站 2022-03-15 21:57:24
...

题目描述
计算一个数字的立方根,不使用库函数
详细描述:
接口说明
原型:
public static double getCubeRoot(double input)
输入:double 待求解参数
返回值:double 输入参数的立方根,保留一位小数

思想:
math.pow计算立方根,返回小数点较多。
再使用DecimalFormat对小数点进行取舍(四舍五入)

代码如下:

import java.util.*;
import java.math.*;
import java.text.DecimalFormat;
public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        double a=sc.nextDouble();
        DecimalFormat df=new DecimalFormat("0.0");
        System.out.println(df.format(getCubeRoot(a)));
    }
    public static double getCubeRoot(double input){
        return Math.pow(input,1.0/3.0);
    }
}