當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.StrictMath.cos()用法及代碼示例



描述

這個java.lang.StrictMath.cos() 方法返回一個角度的三角餘弦值。它包括——

如果參數為 NaN 或無窮大,則結果為 NaN。

聲明

以下是聲明java.lang.StrictMath.cos()方法

public static double cos(double a)

參數

a─ 這是角度,以弧度表示。

返回值

此方法返回參數的餘弦。

異常

NA

示例

下麵的例子展示了 java.lang.StrictMath.cos() 方法的用法。

package com.tutorialspoint;

import java.lang.*;

public class StrictMathDemo {

  public static void main(String[] args) {

      double d1 = (60*(Math.PI))/180 , d2 = 0.0, d3 = (1.0/0.0) ;
   
      // returns the trigonometric cosine of specified angle in radian 
      double cosValue = StrictMath.cos(d1); 
      System.out.println("Trigonometric cosine of d1 = " + cosValue);

      cosValue = StrictMath.cos(d2); 
      System.out.println("Trigonometric cosine of d2 = " + cosValue);

      cosValue = StrictMath.cos(d3); 
      System.out.println("Trigonometric cosine of d3 = " + cosValue);
   }
}

讓我們編譯並運行上麵的程序,這將產生以下結果——

Trigonometric cosine of d1 = 0.5000000000000001
Trigonometric cosine of d2 = 1.0
Trigonometric cosine of d3 = NaN

相關用法


注:本文由純淨天空篩選整理自 Java.lang.StrictMath.cos() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。