Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Golf Challenge: FizzBuzz

by Sidhekin (Priest)
on Mar 02, 2007 at 17:06 UTC ( [id://602905]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    perl -le'print(($_%3?"":Fizz).($_%5?"":Buzz)or$_)for 1..100'
    
  2. or download this
    sub fizzBuzz {
    #23456789 123456789 123456789 123456789 123456789 
    print(($_%3?"":Fizz).($_%5?"":Buzz)or$_)for 1..100
    }
    
  3. or download this
    sub fizzBuzz {
    #23456789 123456789 123456789 123456789 123456789 12
    print+($_%3?"":Fizz).($_%5?"":Buzz)||$_,$/for 1..100
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (4)
As of 2024-04-19 02:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found