溫馨提示×

C++中arccos函數(shù)的代碼示例有哪些

c++
小樊
88
2024-08-13 12:11:37
欄目: 編程語言

  1. 使用cmath庫中的acos函數(shù)實現(xiàn):
#include <iostream>
#include <cmath>

int main() {
    double angle = 0.5; // 輸入角度值
    double result = acos(angle); // 計算反余弦值
    std::cout << "arccos(" << angle << ") = " << result << std::endl;

    return 0;
}
  1. 使用自定義函數(shù)實現(xiàn)arccos函數(shù):
#include <iostream>

double arccos(double x) {
    return atan2(sqrt(1 - x*x), x);
}

int main() {
    double angle = 0.5; // 輸入角度值
    double result = arccos(angle); // 計算反余弦值
    std::cout << "arccos(" << angle << ") = " << result << std::endl;

    return 0;
}

這兩個示例都是計算給定角度的反余弦值,第一個示例使用cmath庫中的acos函數(shù),而第二個示例則是自定義函數(shù)實現(xiàn)。

0