C 库函数 - asin()
C 语言教程
· 2019-02-23 06:11:53
描述
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("%lf 的反正弦是 %lf 度", x, ret); return(0); }
让我们编译并运行上面的程序,这将产生以下结果:
0.900000 的反正弦是 64.190609 度
点击查看所有 C 语言教程 文章: https://www.codercto.com/courses/l/17.html
Impractical Python Projects
Lee Vaughan / No Starch Press / 2018-11 / USD 29.95
Impractical Python Projects picks up where the complete beginner books leave off, expanding on existing concepts and introducing new tools that you’ll use every day. And to keep things interesting, ea......一起来看看 《Impractical Python Projects》 这本书的介绍吧!