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