toDegrees() Method in java

Java Programming Language / Number Class in java

813

Program:

 public class WrappertoDegreesMethod {

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

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

/*

Converts the argument to degrees.

*/

Output:

3437.7467707849396
2578.3100780887044
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.