Groovy โ€“ Numbers toDegrees()

  • Post author:
  • Post category:Groovy
  • Post comments:0 Comments
degrees

The method converts the argument value to degrees.

Syntax

double toDegrees(double d)

Parameters

d โ€“ A double data type.

Return Value

This method returns a double value.

Example

Following is an example of the usage of this method โˆ’

class Example { 
   static void main(String[] args) { 
      double x = 45.0; 
      double y = 30.0;
		
      System.out.println( Math.toDegrees(x) ); 
      System.out.println( Math.toDegrees(y) ); 
   } 
}

When we run the above program, we will get the following result โˆ’

2578.3100780887044 
1718.8733853924698

Previous Page:-Click Here

Leave a Reply