在C++中,可以使用cmath頭文件中的acos函數來計算arccos函數的值。示例如下:
#include <iostream>
#include <cmath>
int main() {
double angle = 0.5; // 輸入角度值
double result = acos(angle); // 計算arccos值
std::cout << "The arccos of " << angle << " is: " << result << std::endl;
return 0;
}
在上面的示例中,我們使用了cmath頭文件中的acos函數來計算角度值為0.5的arccos值,并將結果輸出到控制臺。