C++ tan()
Published Nov 30, 2022
Contribute to Docs
The tan() function returns the tangent of an angle given in radians.
Syntax
tan(x)
The x parameter represents an angle measured in radians. One radian is equal to 180/π degrees (where π (Pi) = 3.14159…). If x is equal to π ± n/π (where n is a natural number), then a domain error will occur.
Example
The following example returns the tangent of 0 with the tan() function:
#include <iostream>#include <cmath>int main() {double x = 0;double result;result = std::tan(x);std::cout << "The tangent of " << x << " is " << result << ".\n";}
This produces the following output:
The tangent of 0 is 0.
Codebyte Example
The following example is runnable and uses the tan() function to find the tangent of π/4:
Contribute to Docs
- Learn more about how to get involved.
- Edit this page on GitHub to fix an error or make an improvement.
- Submit feedback to let us know how we can improve Docs.
Learn C++ on Codecademy
- Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
- Includes 6 Courses
- With Professional Certification
- Beginner Friendly.75 hours
- Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
- Beginner Friendly.11 hours