Java Number Power pow(int leftOp, int rightOp)

Here you can find the source of pow(int leftOp, int rightOp)

Description

pow

License

Apache License

Declaration

public static int pow(int leftOp, int rightOp) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int pow(int leftOp, int rightOp) {
        return (int) Math.pow(leftOp, rightOp);
    }//from  w  ww.  j av a  2s. c o m

    public static float pow(float leftOp, float rightOp) {
        return (float) Math.pow(leftOp, rightOp);
    }
}

Related

  1. pow(int base, int exp)
  2. pow(int base, int exp)
  3. pow(int base, int exponent)
  4. pow(int base, int power)
  5. pow(int i, int pow)
  6. pow(int n, int p)
  7. pow(int number, int power)
  8. pow(int value, int exp)
  9. pow(int x, int y)