Logo

Programming-Idioms

  • Rust
  • Java

Idiom #336 Exponent

Compute x = b

b raised to the power of n is equal to the product of n terms b × b × ... × b

let x = b.pow(n)
import static java.lang.Math.pow;
double x = pow(b, n);
Value := Base ** Exponent;

Exponent's type must be an Integer >= 0 (Natural). Or, if Base is a floating point number, Exponent can be negative.

New implementation...