Choose Category
//atan2() - Return the Tangent of a/bimport java.lang.Math.*;class Demotan2{public static void main(String args[]){System.out.println("Atan2 of -0.9 is" + Math.atan2(-0.9,0.1));}}