목차
Math.asin(x) 예제 - 아크사인값 반환
Math.asin(x) 정의
Math.asin(x) 구문
Math.asin(x) 예제 - 아크사인값 반환
Hz.java
※ 지정 숫자의 아크사인값 구하기.
public class Hz {
public static void main(String[] args) {
System.out.println(Math.asin(0.34));
// 0.34691689752716176
System.out.println(Math.asin(-0.5));
// -0.5235987755982989
System.out.println(Math.asin(0));
// 0.0
System.out.println(Math.asin(1));
// 1.5707963267948966
System.out.println(Math.asin(-1));
// -1.5707963267948966
System.out.println(Math.asin(2));
// NaN
}
}
Math.asin(x) 정의
지정 숫자의 아크사인값 반환.
Math.asin(x) 구문
public static double asin(double number )
[매개변수]
number
필수. 아크사인값 구할 double 자료형 숫자.
※ (-1 <= n <=1) 범위 가능.
※ 위 범위 벗어나면 NaN 반환.
[반환값]
지정 숫자의 아크사인값 반환. (double 자료형)
주소 복사
랜덤 이동
최신댓글