Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Php
$x = gmp_pow(3, 247);
echo gmp_strval($x);

There are two BigNum libraries in PHP, gmp and bc.
gmp is more popular.
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...