使用Java中的Math.sqrt获取数字的平方根

Get square root of a number using Math.sqrt in Java

为了在Java中获得数字的平方根,我们使用java.lang.Math.pow()方法。 Math.pow(double a)方法接受一个double数据类型的参数,并返回一个值,该值是该参数的平方根。

宣言 ? java.lang.Math.sqrt()方法声明如下:

1
public static double sqrt(double a)

其中a是要找到其平方根的数字。

让我们看一个使用Math.sqrt()方法找到数字平方根的程序。

现场演示

1
2
3
4
5
6
7
8
9
10
11
import java.lang.Math;
public class Example {
   public static void main(String[] args) {
      // declaring and initializing some double values
      double x = 25;
      double y = 81;
      // computing the square roots
      System.out.println("The square root of"+ x +" is"+ Math.sqrt(x));
      System.out.println("The square root of"+ y +" is"+ Math.sqrt(y));
   }
}

输出量

1
2
The square root of 25.0 is 5.0
The square root of 81.0 is 9.0