Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Pascal

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.

NCalc
  z := PowerN(x, n);

FreePascal (or Delphi) don't come with built-in support for big integers, so you need a 3rd party implementation, such as NCalc in this example.
(There are far better big integer implementations for FreePascal/Delphi than this one...)
using System.Numerics;
var z = BigInteger.Pow(x, n);

New implementation...