java.lang.StrictMath.sin() 方法返回一個角度的正弦值。它包括以下情況:
以下是java.lang.StrictMath.sin()方法的宣告
public static double sin(double a)
a -- 這是一個角度,以弧度為單位。
這個方法返回引數的正弦值。
NA
下面的例子顯示java.lang.StrictMath.sin()方法的使用。
package com.yiibai; import java.lang.*; public class StrictMathDemo { public static void main(String[] args) { double d1 = (90*Math.PI)/180 , d2 = 0.0, d3 = (1.0/0.0) ; // returns the trigonometric sine of an angle double sinValue = StrictMath.sin(d1); System.out.println("Trigonometric sine of d1 = " + sinValue); sinValue = StrictMath.sin(d2); System.out.println("Trigonometric sine of d2 = " + sinValue); sinValue = StrictMath.sin(d3); System.out.println("Trigonometric sine of d3 = " + sinValue); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Trigonometric sine of d1 = 1.0 Trigonometric sine of d2 = 0.0 Trigonometric sine of d3 = NaN