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


Java StrictMath sin()用法及代碼示例


java.lang.StrictMath.sin()是Java中的內置函數,它返回角度的三角正弦值。

用法:

public static double sin(double ang)

參數:該函數接受單個參數ang,它是一個雙變量,表示一個角(以弧度表示),該角的三角正切值將由該函數返回。


返回值:此方法返回作為參數傳遞給函數的角度的正弦值。考慮以下情況:

  • 如果參數為NaN或無窮大,則該函數返回NaN。
  • 如果參數為零,則該函數將返回零,其符號與參數的符號相同。

例子:

Input : ang = 0.5235987755982988(30 degree)
Output : 0.49999999999999994

Input : ang = 0.7853981633974483(45 degree)
Output : 0.7071067811865475

以下程序說明了Java中java.lang.StrictMath.sin()函數的工作方式:

示例1:

// Java Program to illustrate sin() 
import java.io.*; 
import java.math.*; 
import java.lang.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        double ang = (60 * Math.PI) / 180; 
  
        // Display the trigonometric sine of the angle 
        System.out.println("Sine value of 60 degrees : "
                                 + StrictMath.sin(ang)); 
    } 
}
輸出:
Sine value of 60 degrees : 0.8660254037844386

示例2:

// Java Program to illustrate sin() 
import java.io.*; 
import java.math.*; 
import java.lang.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
  
        double ang = 77.128; 
        // Convert the angle to its equivalent radian 
        double rad = StrictMath.toRadians(ang); 
        System.out.println(rad); 
  
        // Display the trigonometric sine of the angle 
        System.out.println("Sine value of 77.128 degrees : "
                                     + StrictMath.sin(rad)); 
    } 
}
輸出:
1.3461375454781863
Sine value of 77.128 degrees : 0.9748701783788553

參考:https://docs.oracle.com/javase/8/docs/api/java/lang/StrictMath.html#sin()



相關用法


注:本文由純淨天空篩選整理自RICHIK BHATTACHARJEE大神的英文原創作品 StrictMath sin() Method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。