跳转到内容

C 编程/math.h/acos

来自维基教科书,自由的教学资源

acos() 函数(代表 arc cosine,即反余弦)在 math.h 中定义。它接受一个变量,返回该变量的反余弦值。该函数期望值在 -11 之间,返回值在 0 到 PI(3.1415927)之间。如果传入的值大于 1,则会输出 NAN。

float acos(float x);

需要返回反余弦值的浮点数。

返回值

[编辑 | 编辑源代码]

浮点数(变量的反余弦值)。

参考文献

[编辑 | 编辑源代码]
  • The C Programming Language, Second Edition, By Brian W. Kernighan and Dennis M. Ritchie, Page no. 251
  • Programming With C, Second Edition, By Gottfried, Page no 487

[编辑 | 编辑源代码]
华夏公益教科书