Logo

Programming-Idioms

  • PHP
  • C#
  • Dart
  • Rust
  • Perl
  • Lua
  • Smalltalk

Idiom #66 Big integer exponentiation

Calculate the result z of x power n, where x is a big integer and n is a positive integer.

z := x ** n.
z := x raisedTo: n.
using System.Numerics;
var z = BigInteger.Pow(x, n);
import "dart:math";
var z = pow(x, n);
extern crate num;
let z = num::pow(x, n);
use bigint;
my ($x, $y) = (3 ** 200, 25);
my $z = $x ** $y;
import std.bigint;
BigInt z = x ^^ n;

New implementation...