java.lang.StrictMath.sin()方法實例
java.lang.StrictMath.sin() 方法返回一個角度的正弦值。它包括以下情況:
- 如果參數為NaN或無窮大,那麼結果為NaN。
- 如果參數是零,那麼結果是參數為零相同的符號。
聲明
以下是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