Java Data Type Tutorial - Java StrictMath.tan(double a)








Syntax

StrictMath.tan(double a) has the following syntax.

public static double tan(double a)

Example

In the following code shows how to use StrictMath.tan(double a) method.

/*from   w  ww .ja  v a 2  s .  c  o  m*/

public class Main {

  public static void main(String[] args) {
  
    double d1 = (45*Math.PI)/180 , d2 = 0.0;

    System.out.println("tangent value of d1 : " + StrictMath.tan(d1));
        
    System.out.println("tangent value of d2 : " + StrictMath.tan(d2));
  }
}

The code above generates the following result.