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
相關用法
- Java StrictMath toDegrees()用法及代碼示例
- Java Collections.singleton()用法及代碼示例
- Java Math asin()用法及代碼示例
- Java String isEmpty()用法及代碼示例
- Java String contains()用法及代碼示例
- Java Math log()用法及代碼示例
- Java String charAt()用法及代碼示例
- Java Math hypot()用法及代碼示例
- Java Math exp()用法及代碼示例
- Java Math getExponent()用法及代碼示例
- Java Math getExponent()用法及代碼示例
- Java Math expm1()用法及代碼示例
- Java String trim()用法及代碼示例
- Java Math round()用法及代碼示例
- Java Math pow()用法及代碼示例
- Java toRadians()用法及代碼示例
- Java Math nextAfter()用法及代碼示例
- Java Integer.numberOfLeadingZeros()用法及代碼示例
- Java Integer.numberOfTrailingZeros()用法及代碼示例
- Java Short byteValue()用法及代碼示例
- Java Short floatValue()用法及代碼示例
- Java Short longValue()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Java toDegrees() method with Example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。