Java toDegrees() 方法示例

javaobject oriented programmingprogramming

java.lang.Math.toDegrees(double angrad) 将以弧度为单位测量的角度转换为以度为单位测量的近似等效角度。从弧度到度的转换通常不精确;用户不应期望 cos(toRadians(90.0)) 精确等于 0.0。

此处,参数 angrad 以弧度为单位。

示例

以下是在 Java 中实现 toDegrees() 方法的示例 −

import java.lang.*;
public class Demo {
   public static void main(String[] args) {
      double x = 45;
      double y = -180;
      x = Math.toDegrees(x);
      y = Math.toDegrees(y);
      System.out.println("Math.tanh(" + x + ")=" + Math.tanh(x));
      System.out.println("Math.tanh(" + y + ")=" + Math.tanh(y));
   }
}

输出

Math.tanh(2578.3100780887044)=1.0
Math.tanh(-10313.240312354817)=-1.0

示例

让我们看另一个例子 −

import java.lang.*;
public class Demo {
   public static void main(String[] args) {
      double x;
      x = Math.PI;
      System.out.println(Math.toDegrees(x));
   }
}

输出

180.0

相关文章