B. Rothstein wrote:
> Does anyone have any suggestions on how to create an array to hold
> the value of 1000 factorial?

This will compute it:

perl -MMath::BigInt -le '$n = Math::BigInt->new("1"); $n *= $_ for 2..1000;
print $n'

You can stick the result in an array if you want...

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to