Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re^2: Exponential Function Programming

by Dominus (Parson)
on Nov 23, 2007 at 19:45 UTC ( [id://652646]=note: print w/replies, xml ) Need Help??


in reply to Re: Exponential Function Programming
in thread Exponential Function Programming

sub my_factorial { ... if($n == 0) { $r=0; } return $r; }
Your function says that 0 factorial is 0. But it's not; it's 1.

Replies are listed 'Best First'.
Re^3: Exponential Function Programming
by blazar (Canon) on Nov 24, 2007 at 13:42 UTC

    Perl 6 is very generous in this:

    pugs> sub postfix:<!> (Int $n) { [*] 1..$n } undef pugs> say $_! for ^10 1 1 2 6 24 120 720 5040 40320 362880 undef

    (I personally believe that I've posted this before here and in different media, but that's jut because it's quite about the only thing I can actually do in pugs ATM.)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://652646]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-24 20:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found