Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| #using <System.Numerics.dll> | |
| using namespace System; | |
| using namespace System::Numerics; | |
| void main() | |
| { | |
| BigInteger value = BigInteger::Pow(Int64::MaxValue, 2); | |
| Console::WriteLine(value.ToString("R")); | |
| } | |
| // The example displays the following output: | |
| // 85070591730234615847396907784232501249 | |