toRadians() Method in java

Java Programming Language / Number Class in java

3601

Program:

 public class ToRadiansMethod {

    public static void main(String args[]) {
	      double x = 60.0;
	      double y = 45.0;

	      System.out.println( Math.toRadians(x) );
	      System.out.println( Math.toRadians(y) );
	   }
}

/*

Converts the argument to radians.

*/

Output:

1.0471975511965976
0.7853981633974483
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.