java.lang.Math.atan(double a) java.lang.Math.asin(double a) java.lang.Math.atan2(double y,double x) java.lang.Math.atan(double a) package com.codingdict; import java.lang.*; public class MathDemo { public static void main(String[] args) { // get a variable x which is equal to PI/2 double x = Math.PI / 2; // convert x to radians x = Math.toRadians(x); // get the arc tangent of x System.out.println("Math.atan(" + x + ")" + Math.atan(x)); } } java.lang.Math.asin(double a) java.lang.Math.atan2(double y,double x)