Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Pascal Triangle

by hdb (Monsignor)
on Apr 02, 2013 at 08:32 UTC ( [id://1026619]=CUFP: print w/replies, xml ) Need Help??

In a recent Chatterbox discussion, the question was whether the Pascal triangle starts with row zero or one. This little script is to highlight why zero is the first row:

use strict; use warnings; my $n = 5; for (my $i=0; $i<=$n; ++$i ) { print " " x ($n-$i); print "/$i\\ " for 0..$i; print "\n"; print " " x ($n-$i); print "\\$_/ " for 0..$i; print "\n\n"; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://1026619]
Approved by marto
Front-paged by Arunbear
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2024-04-25 15:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found