java.lang.StrictMath.sin()是Java中的内置函数,它返回角度的三角正弦值。
用法:
public static double sin(double ang)
参数:该函数接受单个参数ang,它是一个双变量,表示一个角(以弧度表示),该角的三角正切值将由该函数返回。
返回值:此方法返回作为参数传递给函数的角度的正弦值。考虑以下情况:
- 如果参数为NaN或无穷大,则该函数返回NaN。
- 如果参数为零,则该函数将返回零,其符号与参数的符号相同。
例子:
Input : ang = 0.5235987755982988(30 degree) Output : 0.49999999999999994 Input : ang = 0.7853981633974483(45 degree) Output : 0.7071067811865475
以下程序说明了Java中java.lang.StrictMath.sin()函数的工作方式:
示例1:
// Java Program to illustrate sin()
import java.io.*;
import java.math.*;
import java.lang.*;
class GFG {
public static void main(String[] args)
{
double ang = (60 * Math.PI) / 180;
// Display the trigonometric sine of the angle
System.out.println("Sine value of 60 degrees : "
+ StrictMath.sin(ang));
}
}
输出:
Sine value of 60 degrees : 0.8660254037844386
示例2:
// Java Program to illustrate sin()
import java.io.*;
import java.math.*;
import java.lang.*;
class GFG {
public static void main(String[] args)
{
double ang = 77.128;
// Convert the angle to its equivalent radian
double rad = StrictMath.toRadians(ang);
System.out.println(rad);
// Display the trigonometric sine of the angle
System.out.println("Sine value of 77.128 degrees : "
+ StrictMath.sin(rad));
}
}
输出:
1.3461375454781863 Sine value of 77.128 degrees : 0.9748701783788553
参考:https://docs.oracle.com/javase/8/docs/api/java/lang/StrictMath.html#sin()
相关用法
- Java StrictMath pow()用法及代码示例
- Java StrictMath exp()用法及代码示例
- Java StrictMath tan()用法及代码示例
- Java StrictMath log()用法及代码示例
- Java StrictMath min()用法及代码示例
- Java StrictMath signum()用法及代码示例
- Java StrictMath nextUp()用法及代码示例
- Java StrictMath max()用法及代码示例
- Java StrictMath getExponent()用法及代码示例
- Java StrictMath scalb()用法及代码示例
- Java StrictMath cbrt()用法及代码示例
- Java StrictMath cos()用法及代码示例
- Java StrictMath random()用法及代码示例
- Java StrictMath floor()用法及代码示例
- Java StrictMath cosh()用法及代码示例
注:本文由纯净天空筛选整理自RICHIK BHATTACHARJEE大神的英文原创作品 StrictMath sin() Method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。