C语言 <math.h> asin 函数

  • 描述

    C库函数double asin(double x)返回弧度x的反正弦值。
  • 声明

    以下是asin函数的声明。
    
    double asin(double x)
    
    参数
    • x - 这是区间[-1,+ 1]中的浮点值。
  • 返回值

    此函数以[-pi/2,+pi/2]弧度为间隔返回x的反正弦。
    示例
    以下示例显示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