當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。