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


Java Java.lang.Math.sin()用法及代碼示例



描述

這個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.tutorialspoint;

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

相關用法


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