sifukurt has asked for the wisdom of the Perl Monks concerning the following question:
use Math::BigFloat; use Math::NumberCruncher; $| = 1; $N = shift || 100; $e = Math::BigFloat->new("1"); for ( $i = 1; $i <= $N; $i++ ) { $fac = Math::NumberCruncher::Factorial( $i ); $e += 1 / $fac; } print $e, "\n";
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Calculating e
by mdillon (Priest) on Jul 18, 2001 at 06:01 UTC | |
by I0 (Priest) on Jul 18, 2001 at 11:19 UTC | |
Re: Calculating e
by Albannach (Monsignor) on Jul 18, 2001 at 06:21 UTC | |
Re: Calculating e
by I0 (Priest) on Jul 18, 2001 at 09:58 UTC | |
Re: Calculating e
by Boots111 (Hermit) on Jul 18, 2001 at 18:40 UTC |