Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Large numbers in Pascal (Delphi)

Can I work with large numbers (more than 10^400) with built-in method in Delphi?

like image 398
regexp Avatar asked Aug 28 '10 09:08

regexp


2 Answers

Not built-in, but you might want to check out MPArith for arbitrary precision maths.

like image 189
Will A Avatar answered Oct 26 '22 03:10

Will A


There is also a Delphi BigInt library on SourceForge . I haven't tried it however, but include for completeness.

like image 44
Gerry Coll Avatar answered Oct 26 '22 03:10

Gerry Coll