Different Math Function in Java Program

  1. public class mathclass{  
  2.     public static void main(String[] args){  
  3.         //E and round()  
  4.         Double a = Math.E;  
  5.         System.out.println("e = " + Math.round(a*100)/100f);  
  6.         //PI  
  7.         System.out.println("pi = " + Math.round(Math.PI*100)/100f);  
  8.         //abs()  
  9.         System.out.println("Absolute number = " + Math.abs(Math.PI));  
  10.         //ceil()  
  11.         System.out.println("Smallest integer value but greater than the argument = " + Math.ceil(Math.PI));  
  12.         //exp()  
  13.         System.out.println("Exponent number powered by the argument = " + Math.exp(0));  
  14.         //floor()  
  15.         System.out.println("Largest integer value but less than the argument = " + Math.floor(Math.E));  
  16.         //IEEEremainder()  
  17.         System.out.println("Remainder = " + Math.IEEEremainder(5.3f,2.2f));  
  18.         //max()  
  19.         System.out.println("Maximum Number = " + Math.max(10,10.3));  
  20.         //min()  
  21.         System.out.println("Minimum Number = " + Math.min(10,10.3));  
  22.         //pow()  
  23.         System.out.println("Power = " + Math.pow(10,3));  
  24.         //random()  
  25.         System.out.println("Random Number = " + Math.random());  
  26.         //rint()  
  27.         System.out.println("Closest to the Argument = " + Math.rint(30));  
  28.         //round()  
  29.         System.out.println("Round = " + Math.round(Math.E));  
  30.         //sqrt()  
  31.         System.out.println("Square Root = " + Math.sqrt(400));  
  32.     }