Java StrictMath.toRadians(double angdeg)
Syntax
StrictMath.toRadians(double angdeg) has the following syntax.
public static double toRadians(double angdeg)
Example
In the following code shows how to use StrictMath.toRadians(double angdeg) method.
/* w ww . j a v a 2 s .c om*/
public class Main {
public static void main(String[] args) {
double d1 = 12, d2 = 0.0;
System.out.println("value in radian of " + d1 + " = " + StrictMath.toRadians(d1));
System.out.println("value in radian of " + d2 + " = " + StrictMath.toRadians(d2));
}
}
The code above generates the following result.