在Java中,可以使用Math类的sqrt()方法来计算一个数的平方根。以下是一个示例代码:
public class Main {
public static void main(String[] args) {
double number = 16.0;
double squareRoot = Math.sqrt(number);
System.out.println("平方根:" + squareRoot);
}
}
在上述代码中,我们使用Math类的sqrt()方法来计算16的平方根,并将结果打印输出。
运行上述代码,输出结果为:
平方根:4.0
Math类还提供了其他一些数学计算的方法,如求幂、取整、取绝对值等,可以根据具体需求进行使用。
上一篇:java二叉树的遍历算法代码
下一篇:java静态代码块有啥用
Laravel PHP 深圳智简公司。版权所有©2023-2043 LaravelPHP 粤ICP备2021048745号-3
Laravel 中文站