当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java toDegrees()用法及代码示例


java.lang.Math.toDegrees()用于将以弧度为单位的角度转换为以度为单位的近似等效角度。

注意:从弧度到度的转换通常不精确;用户不应期望cos(toRadians(90.0))完全等于0.0。

用法

public static double toDegrees(double rad)

Parameter:
rad:This parameter is an angle in radians which
we want to convert in degrees.
Return:
This method returns the measurement of the angle 
rad in degrees.

:显示java.lang.Math.toDegrees()方法的用法。

// Java program to demonstrate working 
// of java.lang.Math.toDegrees() method 
import java.lang.Math; 
  
class Gfg { 
  
    // driver code 
    public static void main(String args[]) 
    { 
        // value of PI in degrees 
        double rad = Math.PI; 
        System.out.println(Math.toDegrees(rad)); 
  
        // value of PI/2 in degrees 
        rad = (Math.PI) / 2; 
        System.out.println(Math.toDegrees(rad)); 
  
        // value of PI/4 in degrees 
        rad = (Math.PI) / 4; 
        System.out.println(Math.toDegrees(rad)); 
    } 
}

输出:

180.0
90.0
45.0

相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Java toDegrees() method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。