C庫函式 double asin(double x)返回x的正弦弧線弧度。
以下是 asin() 函式的宣告。
double asin(double x)
x --這是一個浮點值在區間 [-1,+1].
這個函式返回弧x的正弦,在區間 [-pi/2,+pi/2] 弧度。
下面的例子顯示asin()函式的用法。
#include <stdio.h> #include <math.h> #define PI 3.14159265 int main () { double x, ret, val; x = 0.9; val = 180.0 / PI; ret = asin(x) * val; printf("The arc sine of %lf is %lf degrees", x, ret); return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
The arc sine of 0.900000 is 64.190609 degrees