溫馨提示×

C++ cmath庫怎樣計算三角函數(shù)

c++
小樊
146
2024-07-09 03:05:26
欄目: 編程語言

C++中的cmath庫提供了一些函數(shù)來計算三角函數(shù),如sin、cos、tan、asin、acos、atan等。這些函數(shù)需要傳入一個角度值(弧度制或角度制),然后返回相應(yīng)的三角函數(shù)值。下面是一些示例代碼:

#include <iostream>
#include <cmath>

int main() {
    double angle = 45; // 45度
    double radian = angle * M_PI / 180; // 將角度轉(zhuǎn)換為弧度

    // 計算sin、cos、tan值
    double sinValue = sin(radian);
    double cosValue = cos(radian);
    double tanValue = tan(radian);

    // 輸出結(jié)果
    std::cout << "sin(45) = " << sinValue << std::endl;
    std::cout << "cos(45) = " << cosValue << std::endl;
    std::cout << "tan(45) = " << tanValue << std::endl;

    // 計算asin、acos、atan值
    double asinValue = asin(sinValue);
    double acosValue = acos(cosValue);
    double atanValue = atan(tanValue);

    // 將弧度轉(zhuǎn)換為角度
    double asinAngle = asinValue * 180 / M_PI;
    double acosAngle = acosValue * 180 / M_PI;
    double atanAngle = atanValue * 180 / M_PI;

    // 輸出結(jié)果
    std::cout << "asin(sin(45)) = " << asinAngle << std::endl;
    std::cout << "acos(cos(45)) = " << acosAngle << std::endl;
    std::cout << "atan(tan(45)) = " << atanAngle << std::endl;

    return 0;
}

這段代碼會輸出45度的sin、cos、tan值,以及這些值對應(yīng)的asin、acos、atan值。你可以根據(jù)需要修改角度值來求解其他角度的三角函數(shù)值。

0