Java中的三角方法


java.lang.Math 类包含用于执行基本数字运算(如三角、对数等)的方法。

以下是一些方法。

序号方法 & 说明
1static double abs(double a)
此方法返回双精度值的绝对值。
2static float abs(float a)
此方法返回浮点值的绝对值。
3static int abs(int a)
此方法返回int值的绝对值。
4static long abs(long a)
此方法返回长整型的绝对值。
5static double acos(double a)
此方法返回一个值的反正弦;返回的角度在0.0到pi之间。
6static double asin(double a)
此方法返回一个值的反正弦;返回的角度在-pi/2到pi/2之间。

我们来看acos()方法的一个例子。

示例

 现场演示

public class Demo {
   public static void main(String args[]) {
      double val = Math.PI / 2;
      val = Math.toRadians(val);
      System.out.println("Math.acos(" + val + ") = " + Math.acos(val));
   }
}

输出

Math.acos(0.027415567780803774) = 1.5433773235341761

我们来看asin()方法的一个例子。

示例

 现场演示

public class Demo {
   public static void main(String args[]) {
      double val = Math.PI / 2;
      val = Math.toRadians(val);
      System.out.println("Math.asin(" + val + ") = " + Math.asin(val));
   }
}

输出

Math.asin(0.027415567780803774) = 0.02741900326072046

我们来看log()方法的一个例子。

示例

 现场演示

public class Demo {
   public static void main(String args[]) {
      double val1 = 39564.9;
      double val2 = 1;
      System.out.println("Math.log(" + val1 + ") = " + Math.log(val1));
      System.out.println("Math.log(" + val2 + ") = " + Math.log(val2));
   }
}

输出

Math.log(39564.9) = 10.585697640553684
Math.log(1.0) = 0.0

更新于:26-6月-2020

362次浏览

开启您的职业生涯

完成课程可获得认证

开始
广告