java.lang.Math.toDegrees() 是 java 中的 內置 數學函數,用於將以弧度為單位的角度轉換為以度為單位的近似等效角度。
用法
public static double toDegrees(double x)
參數
x = an angle, in radians
返回
It returns the measurement of the angle x in degrees.
- 如果參數為 NaN,則此方法將返回 NaN。
- 如果參數為零,此方法將返回與參數相同符號的零。
- 如果參數為無窮大,則此方法將返回與參數相同符號的無窮大。
例子1
public class ToDegreesExample1
{
public static void main(String[] args)
{
double x = Math.PI;
// converting value of PI in degrees
System.out.println(Math.toDegrees(x));
}
}
輸出:
180.0
例子2
public class ToDegreesExample2
{
public static void main(String[] args)
{
double x = (Math.PI)/2;
// converting value of PI in degrees
System.out.println(Math.toDegrees(x));
}
}
輸出:
90.0
例子3
public class ToDegreesExample3
{
public static void main(String[] args)
{
double x = -1.0/0;
// Input negative infinity, Output negative infinity
System.out.println(Math.toDegrees(x));
}
}
輸出:
-Infinity
示例 4
public class ToDegreesExample4
{
public static void main(String[] args)
{
double x = 0.0;
// Input positive zero, Output positive zero
System.out.println(Math.toDegrees(x));
}
}
輸出:
0.0
相關用法
- Java Math.toIntExact()用法及代碼示例
- Java Math.toRadians()用法及代碼示例
- Java Math.tan()用法及代碼示例
- Java Math.tanh()用法及代碼示例
- Java Math.multiplyExact()用法及代碼示例
- Java Math.rint()用法及代碼示例
- Java Math.nextUp()用法及代碼示例
- Java Math.asin()用法及代碼示例
- Java Math.atan()用法及代碼示例
- Java Math.nextAfter()用法及代碼示例
- Java Math.exp()用法及代碼示例
- Java Math.getExponent()用法及代碼示例
- Java Math.IEEEremainder()用法及代碼示例
- Java Math.sqrt()用法及代碼示例
- Java Math.incrementExact()用法及代碼示例
- Java Math.min()用法及代碼示例
- Java Math.log()用法及代碼示例
- Java Math.log1p()用法及代碼示例
- Java Math.signum()用法及代碼示例
- Java Math.copySign()用法及代碼示例
注:本文由純淨天空篩選整理自 Java Math.toDegrees() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。