tan(x) computes the tangent of x.
FORTRAN 77 and later
Elemental function
result = tan(x)
x - The type shall be real.The return value is of type real. The kind type parameter is the same as x.
program test_tan
real(8) :: x = 0.165_8
x = tan(x)
end program test_tan