Math: pow(int a, int b) : Math « java.lang « Java by API






Math: pow(int a, int b)

  
/*
 * Output:
 
4096.0


 */


public class MainClass {
  public static void main(String args[]) {
    System.out.println(Math.pow(2, 12));
  }
}
           
         
    
  








Related examples in the same category

1.Math.E
2.Math.PI
3.Math: abs(int value)
4.Math.cbrt(double a) Returns the cube root of a double value.
5.Math: ceil(float value)
6.Math: copySign(double magnitude, double sign)
7.Math: cos(double doubleValue)
8.Math: exp(double a)
9.Math: floor(float value)
10.Math: getExponent(double d)
11.Math.hypot(double x, double y) Returns sqrt(x2 +y2) without intermediate overflow or underflow.
12.Math: log(double doubleValue)
13.Math.log10(double a)
14.Math: max(int value1, int value2)
15.Math: min(double a, double b)
16.Math: min(int value1, int value2)
17.Math: nextAfter(double start, double direction)
18.Math: nextUp(double d)
19.Math: random()
20.Math.round(double a)
21.Math: scalb(double d, int scaleFactor)
22.Math.signum(float f)
23.Math: sin(double doubleValue)
24.Math.sqrt(int intValue)
25.Math: tan(double doubleValue)
26.Math: toDegrees(double theta)
27.Math: toRadians(double theta)