Unfortunately, the last several entries are all missing newlines, which makes the output very hard to read.
It seems like such output is just a little too golfed!
Update: Otherwise, you can still make it shorter:
die+map{(Fizz)[$_%3].(Buzz)[$_%5]||$_}1..100
Update 2: As Sidhekin pointed out to me, the -l switch makes the newline problems go away.
On an unrelated note, I thought it would be fun writing a version that doesn't use the modulo operator (%). Originally I tried golfing it, but it didn't golf well, so here's an easy-to-read version, which makes use of divisibility tests:
use strict;
use warnings;
sub divisible_by_3 {
my $num = shift;
while (length($num) > 1) {
my $sum = 0;
map { $sum += $_ } split '', $num;
$num = $sum;
}
return $num =~ /^[0369]$/;
}
sub divisible_by_5 {
my $num = shift;
return ($num =~ /[05]$/);
}
sub divisible_by_15 {
my $num = shift;
return (divisible_by_3($num) and divisible_by_5($num));
}
foreach (1 .. 100) {
printf "%s\n",
divisible_by_15($_)? "fizzbuzz":
divisible_by_3($_)? "fizz":
divisible_by_5($_)? "buzz":
$_;
}
s''(q.S:$/9=(T1';s;(..)(..);$..=substr+crypt($1,$2),2,3;eg;print$..$/
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
|
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|