在C++中,可以使用
以下是一個示例代碼,演示如何使用acos函數來求解一個給定余弦值的角度:
#include <iostream>
#include <cmath>
int main() {
double cosValue = 0.5;
double angle = acos(cosValue) * 180 / M_PI; // 將弧度轉換為角度
std::cout << "The angle whose cosine value is " << cosValue << " is: " << angle << " degrees" << std::endl;
return 0;
}
在上面的示例中,我們首先定義了一個余弦值為0.5的變量cosValue,然后使用acos函數計算該余弦值對應的角度,并將弧度轉換為角度。最后,我們輸出計算得到的角度值。
運行以上代碼,將會輸出以下結果:
The angle whose cosine value is 0.5 is: 60 degrees