Java中StrictMath類的java.lang.StrictMath.toDegrees()方法用於接受以弧度為單位的角度作為參數,並返回以度為單位的近似等效角度。因此,本質上它將弧度轉換為度。這種轉換通常是不精確的。
用法:
public static double toDegrees(double rad)
參數:此函數接受單個參數rad,該參數rad以弧度表示要轉換為等效角度的角度。
返回值:此方法返回以度為單位傳遞的角度的測量值。
例子:
Input : 2.0 Output : 114.59155902616465 Input : 0.007022 Output : 0.4023309637408641
以下程序說明了Java中的java.lang.StrictMath.toDegrees()方法:
示例1:
// Java Program to illustrate StrictMath.toDegrees()
// function
import java.io.*;
import java.lang.*;
class GFG {
public static void main(String[] args)
{
double rad = 3.0009871008;
double deg = StrictMath.toDegrees(rad);
System.out.println("Value in degrees of " +
rad + " radians is " + deg);
}
}
輸出:
Value in degrees of 3.0009871008 radians is 171.943895249041
示例2:
// Java Program to illustrate StrictMath.toDegrees()
// function
import java.io.*;
import java.lang.*;
class GFG {
public static void main(String[] args)
{
double rad = 1.0;
double deg = StrictMath.toDegrees(rad);
System.out.println("Value in degrees of " +
rad + " radians is " + deg);
}
}
輸出:
Value in degrees of 1.0 radians is 57.29577951308232
參考: https://docs.oracle.com/javase/8/docs/api/java/lang/StrictMath.html#toDegrees()
相關用法
- Java toDegrees()用法及代碼示例
- Java StrictMath exp()用法及代碼示例
- Java StrictMath tan()用法及代碼示例
- Java StrictMath sin()用法及代碼示例
- Java StrictMath log()用法及代碼示例
- Java StrictMath pow()用法及代碼示例
- Java StrictMath cosh()用法及代碼示例
- Java StrictMath cos()用法及代碼示例
- Java StrictMath fma()用法及代碼示例
- Java StrictMath max()用法及代碼示例
- Java StrictMath cbrt()用法及代碼示例
- Java StrictMath floor()用法及代碼示例
- Java StrictMath nextDown()用法及代碼示例
- Java StrictMath round()用法及代碼示例
注:本文由純淨天空篩選整理自RICHIK BHATTACHARJEE大神的英文原創作品 StrictMath toDegrees() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。