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