java.lang.Math.cos(double a) 返回角三角餘弦值。如果引數為NaN或無窮大,那麼結果為NaN。計算結果必須在1 ulp 確切結果。結果必須具有半單調。
以下是java.lang.Math.copySign()方法的宣告
public static double cos(double a)
a -- 一個角度,以弧度為單位
這個方法返回引數的餘弦值。
NA
下面的例子顯示lang.Math.cos()方法的使用。
package com.yiibai; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get two double numbers double x = 45.0; double y = 180.0; // convert them to radians x = Math.toRadians(x); y = Math.toRadians(y); // print their cosine System.out.println("Math.cos(" + x + ")=" + Math.cos(x)); System.out.println("Math.cos(" + y + ")=" + Math.cos(y)); } }
讓我們來編譯和執行上面的程式,這將產生以下結果:
Math.cos(0.7853981633974483)=0.7071067811865476 Math.cos(3.141592653589793)=-1.0