Thursday 2 June 2011

math class in java


public class mathclass{
public static void main(String[] args){
//E and round()
Double a = Math.E;
System.out.println("e = " + Math.round(a*100)/100f);
//PI
System.out.println("pi = " + Math.round(Math.PI*100)/100f);
//abs()
System.out.println("Absolute number = " + Math.abs(Math.PI));
//ceil()
System.out.println("Smallest integer value but greater than the argument = " + Math.ceil(Math.PI));
//exp()
System.out.println("Exponent number powered by the argument = " + Math.exp(0));
//floor()
System.out.println("Largest integer value but less than the argument = " + Math.floor(Math.E));
//IEEEremainder()
System.out.println("Remainder = " + Math.IEEEremainder(5.3f,2.2f));
//max()
System.out.println("Maximum Number = " + Math.max(10,10.3));
//min()
System.out.println("Minimum Number = " + Math.min(10,10.3));
//pow()
System.out.println("Power = " + Math.pow(10,3));
//random()
System.out.println("Random Number = " + Math.random());
//rint()
System.out.println("Closest to the Argument = " + Math.rint(30));
//round()
System.out.println("Round = " + Math.round(Math.E));
//sqrt()
System.out.println("Square Root = " + Math.sqrt(400));
}
}

1 comment:

Unknown said...

good blog for Math Class. Here i write almost all methods of Math class in a tabular form, so people can understand easily. Thank you for sharing.
Methods of Math Class