java.lang.Math.sin(double a)方法實例
java.lang.Math.sin(double a) 返回一個角度的正弦值。特殊情況:
-
如果參數為NaN或無窮大,那麼結果為NaN。
-
如果參數是零,那麼結果是相同的符號參數為零。
聲明
以下是java.lang.Math.sin()方法的聲明
public static double sin(double a)
參數
-
a -- 角度,以弧度為單位。
返回值
這個方法返回參數的正弦值。
異常
-
NA
例子
下麵的例子顯示lang.Math.sin()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers numbers double x = 45; double y = -180; // convert them to radians x = Math.toRadians(x); y = Math.toRadians(y); // print the trigonometric sine for these doubles System.out.println("Math.sin(" + x + ")=" + Math.sin(x)); System.out.println("Math.sin(" + y + ")=" + Math.sin(y)); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Math.sin(0.7853981633974483)=0.7071067811865475 Math.sin(-3.141592653589793)=-1.2246467991473532E-16