Java StrictMath.toDegrees(double angrad)
Syntax
StrictMath.toDegrees(double angrad) has the following syntax.
public static double toDegrees(double angrad)
Example
In the following code shows how to use StrictMath.toDegrees(double angrad) method.
//from w ww . ja v a 2s . c o m
public class Main {
public static void main(String[] args) {
double d1 = 1.5707963267948966 , d2 = 0.0;
System.out.println("Degree value of d1 : " + StrictMath.toDegrees(d1));
System.out.println("Degree value of d2 : " + StrictMath.toDegrees(d2));
}
}
The code above generates the following result.