Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Groovy - random()

class Example { 
   static void main(String[] args) { 
      System.out.println( Math.random() ); 
      System.out.println( Math.random() ); 
   } 
}

Groovy radian()

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

Groovy Numbers toDegrees()

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) ); 
   } 
}

Groovy atan2()

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

Groovy atan()

class Example {
   static void main(String[] args) {
      double degrees = 45.0;
      double radians = Math.toRadians(degrees);  
		
      System.out.format("The value of pi is %.4f%n", Math.PI);
      System.out.format("The arctangent of %.4f is %.4f degrees %n", Math.cos(radians),
         Math.toDegrees(Math.atan(Math.sin(radians))));  
   } 
}

Groovy acos()

class Example { 
   static void main(String[] args) { 
      double degrees = 45.0; 
      double radians = Math.toRadians(degrees); 
		
      System.out.format("The value of pi is %.4f%n", Math.PI); 
      System.out.format("The arccosine of %.4f is %.4f degrees %n", 
      Math.cos(radians), Math.toDegrees(Math.acos(Math.sin(radians))));
   }
}

Groovy asin()

class Example { 
   static void main(String[] args) { 
      double degrees = 45.0; 
      double radians = Math.toRadians(degrees);
	  
      System.out.format("The value of pi is %.4f%n", Math.PI); 
      System.out.format("The arcsine of %.4f is %.4f degrees %n", 
      Math.sin(radians), Math.toDegrees(Math.asin(Math.sin(radians))));  
   } 
}

Groovy tan()

class Example { 
   static void main(String[] args) { 
      double degrees = 45.0; 
      double radians = Math.toRadians(degrees);  
		
      System.out.format("The value of pi is %.4f%n", Math.PI); 
      System.out.format("The tangent of %.1f degrees is %.4f%n", degrees, Math.tan(radians));  
   } 
}

Groovy cos()

class Example {
   static void main(String[] args){
      double degrees = 45.0; 
      double radians = Math.toRadians(degrees);
   
      System.out.format("The value of pi is %.4f%n", Math.PI);
      System.out.format("The cosine of %.1f degrees is %.4f%n", degrees, Math.cos(radians));  
   } 
}

Groovy sin()

class Example { 
   static void main(String[] args) { 
      double degrees = 45.0; 
      double radians = Math.toRadians(degrees);
	  
      System.out.format("The value of pi is %.4f%n", Math.PI);
      System.out.format("The sine of %.1f degrees is %.4f%n", degrees, Math.sin(radians));
   }
}

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.