double asin(double x)
优质
小牛编辑
131浏览
2023-12-01
描述 (Description)
C库函数double asin(double x)以弧度形式返回double asin(double x)的反正弦值。
声明 (Declaration)
以下是asin()函数的声明。
double asin(double x)
参数 (Parameters)
x - 这是区间[-1,+ 1]中的浮点值。
返回值 (Return Value)
此函数在区间[-pi/2,+ pi/2]弧度中返回x的反正弦值。
例子 (Example)
以下示例显示了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.158067 degrees