C ++ Math tan()函数

C ++ Math tan()函数

该函数找到以弧度表示的角度的正切。

语法

考虑一个弧度 ‘x’。 语法将是:

float tan(float x);
double tan(double x);
long double tan(long double x);
double tan(integral x);

注意:如果传递的值是整数类型,则会将其转换为双精度型。

参数

x :以弧度给出的值。

返回值

它返回以弧度给出的角的正切值。

示例1

让我们看一个简单的示例,当x的值为正数时。

#include 
#include
using namespace std;
int main()
{
   float degree=10;
   float radian=degree*3.14/180;
cout<<"Tangent of an angle is : "<

输出:

Tangent of an angle is : 0.176236

在本例中,tan()函数在degree的值等于10时计算角的正切。

示例2

让我们来看一个简单的示例,当degree的值为负数时。

#include 
#include
using namespace std;
int main()
{
  float degree= -60;
  float radian=degree*3.14/180;
cout<<"Tangent of an angle is :"<

输出:

Tangent of an angle is :-1.72993 

在这个示例中,tan()函数计算角度为负值(即-60)时的正切值。

Camera课程

Python教程

Java教程

Web教程

数据库教程

图形图像教程

办公软件教程

Linux教程

计算机教程

大数据教程

开发工具教程