📅  最后修改于: 2023-12-03 15:29:50.442000             🧑  作者: Mango
在C++中,我们可以使用math.tan()
函数来计算一个角度的正切值。该函数在<cmath>
头文件中定义。
#include <cmath>
double tan(double arg);
#include <iostream>
#include <cmath>
int main() {
double degrees = 45.0;
double radians = degrees * M_PI / 180.0;
double tan_value = std::tan(radians);
std::cout << "The tangent of " << degrees << " degrees is " << tan_value << std::endl;
return 0;
}
输出:
The tangent of 45 degrees is 0.999999
在上面的示例中,我们将45度转换为弧度,并使用std::tan()
函数计算其正切值。
NaN
(not a number)。math.tan()
函数是C++中一个非常有用的函数,可用于计算给定角度的正切值。但是,使用该函数时需要注意参数单位以及越界问题。