vote up 68 vote down star
45

See here

Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

Disclaimer: I do realize this is easy, and I understand the content of the Coding Horror post I just linked to

flag
show 2 more comments

167 Answers

1 2 3 4 5 6 next
vote up 2 vote down
#!C:\Python25\python.exe
for i in range(1,100):
        something = False
        text = ""
        if not (i%3):
                text = text + "Fizz"
                something = True
        if not (i%5):
                text = text + "Buzz"
                something = True
        if not(something):
                print i
        else:
                print text

That was easy-cheesy...

edit: apparently it's "Buzz", not "Bizz".

link|flag
vote up 2 vote down
<h1>The Fizz Problem</h1>
<pre>
<?php

for ($i=1; $i<=100; $i++)
{

$divBy3 = !($i % 3);
$divBy5 = !($i % 5);

if ($divBy3)
{
print "Fizz";
}

if ($divBy5)
{
print "Buzz";
}
else if (!$divBy3)
{
print "$i";
}

print "\n";
}
?>
</pre>
link|flag
vote up 7 vote down

I know you didn't ask for the shortest, but this is the shortest I know of without rechecking the modulus (in ruby)

100.times do |i|
value = (i % 3 == 0) ? 'Fizz' : '';
value += 'Buzz' if (i % 5 == 0)
puts value.empty? ? i : value;
end
link|flag
vote up 49 vote down

The only real challenge here is turning it in a golf match.

Updated. Now 70 characters in Ruby, 8 characters behind Perl:

1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}

Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:

class Symbol
  def +(other)
    to_s + other.to_s
  end
end

class NilClass
  def +(other)
    other.to_s
  end
end

Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:

1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}

Updated. I found the best Ruby solution in comp.lang.ruby. 56 characters, but using ?d for 100 is sinking pretty damn low, IMHO.

1.upto(?d){|i|i%3<1&&x=:Fizz;puts i%5<1?"#{x}Buzz":x||i}

Which language features (that we cannot add by monkeypatching) would make this even shorter?

  • an implicit variable (_) for blocks (Perl has this)
  • the empty string evaluating to false (Perl has this. Zero (0) too is false.)

With these features, fizzbuzz would look like this (46 characters):

1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}

@lbrandy: golfscript is very cool. I got fizzbuzz down to 43 characters, but there's definitely room for improvement:

101,(;{\..3%'''Fizz'if\5%'''Buzz'if+\or}%n*

Updated. I've got it down to 37 characters, lbrandy, building on your solution (which is 40 characters, incidentally). You can save two characters by replacing <1 by !, twice. And another one by creating an 0..99 array and incrementing the number in the loop, instead of creating a 0..100 array and throwing away the first element.

100,{)..3%!'Fizz'*\5%!'Buzz'*+\or}%n*

Amazing what you can do with 36 primitives and 4 datatypes! A new addiction is born.

link|flag
show 1 more comment
vote up 1 vote down

Glad to post the first response in C ;)

int main(int argc, _TCHAR* argv[])
{
for(int i = 0; i < 100 ; i++)
{
if(i%3)
{
if(i%5)
{
printf("FizzBuzz");
}
else
{
printf("Fizz");
}
}
else if(i%5)
{
printf("Buzz");
}
}
return 0;
}
link|flag
1  
You forgot to printf("%d", i) in case it's not divisible by either. – korona Oct 9 '08 at 14:21
show 2 more comments
vote up 4 vote down

C#...

            for (int i=1; i<=100; i++)
{
if ((i%3==0) && (i%5==0))
{
Console.WriteLine("FizzBuzz");
}
else if (i%3 == 0)
{
Console.WriteLine("Fizz");
}
else if (i%5 == 0)
{
Console.WriteLine("Buzz");
}
else
{
Console.WriteLine(i.ToString());
}
}
link|flag
show 1 more comment
vote up 2 vote down

Not the first way I would choose to do it but you could do the following

and now in vb.net... (for a change)

For i As Integer = 1 To 100
Select Case True
Case (i Mod 3 = 0) AndAlso (i Mod 5 = 0)
Console.WriteLine("FizzBuzz")
Case i Mod 3 = 0
Console.WriteLine("Fizz")
Case i Mod 5 = 0
Console.WriteLine("Buzz")
Case Else
Console.WriteLine(i.ToString())
End Select
Next
link|flag
vote up 1 vote down

PHP:

for ( $n=1, $m3=0, $m5=0; $n <= 100; $n++, $m3=$n%3==0, $m5=$n%5==0 ){
echo $m3 || $m5 ? ($m3 ? 'Fizz' : '') . ($m5 ? 'Buzz' : '') : $n;
}
link|flag
vote up 4 vote down

Ok, just for grins, here it is in JavaScript:

for(i = 1; i <= 100; i++){
    var fizz = (i % 3 == 0);
    var buzz = (i % 5 == 0);
    var output = "";

    //if number is not divisible by 3 or 5, output number
    if(!fizz && !buzz){
    	output = i;
    }else{
    	//if number is divisible by 3, output Fizz
    	if(fizz){
    		output = "Fizz";
    	}

    	//if number is divisible by 5, add Buzz to output
    	if(buzz){
    		output += "Buzz";
    	}
    }

    document.write(output + "<br />");
}

There's about a billion different ways to do this...


Way #567,895,670 ("no loops, no ifs" version):

document.write(
    new Array(8)
        .join("001021001201003")
        .substr(0, 100)
        .replace(
            /\d/g,
            function (s, i) {
                return [ i + 1, "Fizz", "Buzz", "FizzBuzz" ][s] + "<br/>";
            })
);
link|flag
show 2 more comments
vote up 3 vote down

Alright, here's an example of a one line python FizzBuzz using a list comprehension. It takes advantage of pure boolean logic in place of any control structure. I did it purely to see if I could.

#!/bin/python
#FizzBuzz with an unpythonic List Comprehension
print [(((not i%3 and not i%5) * 'FizzBuzz') or ((not i%3) * 'Fizz') or ((not i%5) * 'Buzz') or i) for i in range(1,101)]
link|flag
vote up 10 vote down

Another python. It won't win the golf match, but it uses the least amount of loops/instructions.

#!C:\Python25\python.exe
print """1\n2\nFizz\n4\nBizz\nFizz\n7\n8\nFizz\nBizz
11\nFizz\n13\n14\nFizzBizz\n16\n17\nFizz\n19\nBizz
Fizz\n22\n23\nFizz\nBizz\n26\nFizz\n28\n29\nFizzBizz
31\n32\nFizz\n34\nBizz\nFizz\n37\n38\nFizz\nBizz
41\nFizz\n43\n44\nFizzBizz\n46\n47\nFizz\n49\nBizz
Fizz\n52\n53\nFizz\nBizz\n56\nFizz\n58\n59\nFizzBizz
61\n62\nFizz\n64\nBizz\nFizz\n67\n68\nFizz\nBizz
71\nFizz\n73\n74\nFizzBizz\n76\n77\nFizz\n79\nBizz
Fizz\n82\n83\nFizz\nBizz\n86\nFizz\n88\n89\nFizzBizz
91\n92\nFizz\n94\nBizz\nFizz\n97\n98\nFizz
"""
link|flag
3  
Wrong. It's 'Buzz', not 'Bizz' – Adriano Varoli Piazza May 29 at 13:54
10  
It's OK, I inform the interviewer that in the real world, the spec doesn't change all willy-nilly like that. He'll disagree, but I'll call him a communist and he is forced to hire me to keep up a patriotic status. This does not work in every country. – Grant Jun 8 at 18:06
show 3 more comments
vote up 1 vote down

My rough version in PHP

<?php
foreach(range(0, 100) as $num) {
    if(is_int($num/3) && is_int($num/5)) {echo "FizzBuzz"}
    elseif(is_int($num/3)) {echo "Fizz";}
    elseif(is_int($num/5)) {echo "Buzz";}
    else {echo $num;} 
 }
?>
link|flag
vote up 6 vote down

Can't beat the golf champ but a short c# version (115 chars):

for (int i = 1; i < 101; i++) {Console.WriteLine(((i % 3) + (i % 5) == 0 ? "FizzBuzz" : (i % 3 == 0 ? "Fizz" : (i % 5 == 0 ? "Buzz" : i.ToString())))); }     
link|flag
vote up 3 vote down

Going golfing... 70 characters in Perl:

for(1..100){print $_%3?($_%5?$_:'Buzz'):($_%5?'Fizz':'FizzBuzz'),"\n"}
link|flag
show 1 more comment
vote up 69 vote down

The author asked for a language agnostic solution and so I will attack the question with pseudocode! We could argue about efficency all day but I find this the most readable form.


for every integer 1 to 100
    if the integer is divisible by 3 and divisible by 5
        print "FizzBuzz"
    else if the integer is divisible by 3
        print "Fizz"
    else if the integer is divisible by 5
        print "Buzz"
    else 
        print the integer

link|flag
2  
nah. Prakash has it correct. the method here checks divisibility by 3 more often then necessary. – EvilTeach Oct 4 '08 at 17:22
4  
It feels so much like Python, whoa. – mannicken Jan 10 at 7:00
3  
could this not be condensed slightly by checking for divisible by 15 instead of by 3 and 5? It's also more likely to be divisible by 3 than 5 and 5 than 15, so reordering the ifs/elses should make it more efficient. – BenAlabaster May 15 at 21:17
4  
For what it's worth, I wrote an interpreter that runs this code: moserware.com/2008/08/… – Jeff Moser Jun 24 at 13:14
show 1 more comment
vote up 1 vote down
#define p printf
int main() {
    int i;
    for (i = 0; i < 100; i++) {
        (i % 3) == 0 ? p("%d=Fizz", i) : p("%d=", i);
        (i % 5) == 0 ? p("Buzz\n") : p("\n");
    }
    return 0;
}

122 characters.

link|flag
show 1 more comment
vote up 1 vote down

In Scheme:

(define (fizz n)
  (cond ((= 1 n) `(1))
    ((= 0 (modulo n 15)) (append (fizz (- n 1)) '("FizzBuzz"))) 
    ((= 0 (modulo n 5)) (append (fizz (- n 1)) '("Buzz")))
    ((= 0 (modulo n 3)) (append (fizz (- n 1)) '("Fizz")))
    (else (append (fizz (- n 1)) (list n)))))
link|flag
show 1 more comment
vote up 22 vote down

Code golf it is. Python. 58 characters. No monkey-patching required :P. Woo.

i=0;exec"i+=1;print(i%5<1)*'fizz'+(i%3<1)*'buzz'or i;"*100

edited: to 72

edited: to 58, incorporating an idea from http://beta.stackoverflow.com/questions/437/#2186 (@PabloG, <1 works better than 'not')

link|flag
vote up 6 vote down
<?while($i++<100)echo(($j=($i%3?"":"Fizz").($i%5?"":"Buzz"))?$j:$i)."
";

PHP, 72 characters. Yes, that is a literal newline.

(many edits happened, didn't track them all!)

link|flag
show 1 more comment
vote up 5 vote down

Here's 62 in Perl and I'm not even good at perl. I'm sure Perl golfer could do better.

print"$_\n"for map{($_%3?"":"Fizz").($_%5?"":"Buzz")||$_}1..100

edit: added 1 char to go to 100, not 99

link|flag
vote up 36 vote down

Excel version

Place this in column B and numbers from 1 to 100 in column A

=IF(MOD(A1,15),IF(MOD(A1,5),IF(MOD(A1,3),A1,"Fizz"),"Buzz"),"FizzBuzz")
link|flag
show 2 more comments
vote up 23 vote down

Assuming I were doing this for an interview, I don't think I'd try to show off by cutting down on the number of lines. I'd try to make my answer as clean and simple as possible. In C#,

foreach (int number in Enumerable.Range(1, 100)) {

bool isDivisibleBy3 = (number % 3) == 0;
bool isDivisibleBy5 = (number % 5) == 0;

if (isDivisibleBy3)
Console.Write("Fizz");

if (isDivisibleBy5)
Console.Write("Buzz");

if (!isDivisibleBy3 && !isDivisibleBy5)
Console.Write(number);

Console.WriteLine();

}
link|flag
1  
FYI: Enumerable.Range requires linq – casademora Sep 15 '08 at 21:28
13  
In an interview, I'd consider Enumerable.Range to be way overkill. Plain old for (int i = 1; i <= 100; ++i) is sufficient! – Hosam Aly Feb 3 at 7:42
6  
Uh... this "clean and simple" code is very readably incorrect, as it does not print "FizzBuzz" for numbers divisible by 15. – ShreevatsaR May 15 at 21:25
34  
@ShreevatsaR - Yes it does - it's using Console.Write, which appends to the current line until the user uses a WriteLine. So if divisible by 15, it writes "Fizz", then "Buzz", then a newline. – Adam V May 29 at 13:51
1  
I would argue then that this isn't as clean and simple as possible, if by simple at least you mean easy to understand. – Joren 2 days ago
vote up 4 vote down

@Michiel de Mare

Which language features (that we cannot add by monkeypatching) would make this even shorter?

At the risk of going a bit off-topic, here are some:

  1. Extremely aggressive type coercion (with high levels of automagic)
  2. Stack based
  3. High level operations (map, join, rotate, split, sort, 'every ith element', etc.)
  4. For #3, using single characters for all of them :)

Taken from golfscript which was a language invented precisely for this purpose.

Updated: @Michiel de Mare ... my golfscript version. 39 characters. Programming in this hurts my brain. I'm sure you could do better, though. It works on the same principle as my 58 character python one. Essentially do a n%3<1 and multiply that by fizz (similar for buzz). Add those. And then or the result with the number. So a null string will be replaced by the number.

101,(;{..3%1<'fizz'*\5%1<'buzz'*+\or}%n*

You can see "top" scores for diff. languages here: http://www.shinh.org/p.rb?FizzBuzz. The best golfscript is 37 versus my 39. The best python is 56 vs my 58. And the best ruby is 56 (with no monkey patching :P).

link|flag
vote up 3 vote down

Java... takes a command line arg for max value to run until, if not supplied uses 100

package stuff.fizzbuzz;
public class FizzBuzz {
public static void main(String[] args){
int max=100;
if(args.length>1){print("usage: FizzBuzz <maxCount>");System.exit(0);}
if(args.length==1)max = Integer.valueOf(args[0]).intValue();
for(int i=1;i<=max;i++){
boolean modThree = i%3==0;
boolean modFive = i%5==0;
if(modThree)print("Fizz");
if(modFive)print("Buzz");
if(!modThree&&!modFive)print(i);
println();
}
}
private static void print(String s){System.out.print(s);}
private static void print(int i){System.out.print(i);}
private static void println(){System.out.println("");}
}
link|flag
vote up 139 vote down

Golfing is easy. How large can you make it?

Enterprise FizzBuzz is written in C# and weighs in at 12 classes and 3 interfaces (not including the main program driver). It comes with a suite of unit tests written in MbUnit. It's fairly loosely coupled but I really should update it for C# 3.5.

link|flag
6  
Hahaha. This still makes me laugh. I'm thinking I might put together a team to do an updated version. Something where the whole FizzBuzz Enterprise solution can be reconfigured from an XML file or something – Wolfbyte Mar 25 at 6:50
24  
...Your own joke still makes you laugh? – mmyers May 11 at 16:59
3  
It is no less funny today than it was when I wrote it. It is consistently in the top 5 posts that bring traffic to my site as well. Actually that last point is almost depressing. – Wolfbyte May 12 at 8:26
3  
Well sure it has unit tests, but have you load tested it? Who knows how many users might want to FizzBuzz simultaneously -- and then where would you be? – John Pirie Jun 30 at 17:11
2  
@Sylverdrag - I've ordered a whiteboard but it hasn't arrived yet – Wolfbyte Aug 30 at 17:15
show 7 more comments
vote up 6 vote down

Here's a Delphi/Pascal version:

var
I: Integer;
begin
for I := 1 to 100 do
if (I mod 3 = 0) and (I mod 5 = 0) then
WriteLn('FizzBuzz')
else if I mod 3 = 0 then
WriteLn('Fizz')
else if I mod 5 = 0 then
WriteLn('Buzz')
else
WriteLn(IntToStr(I));
end.
link|flag
vote up 3 vote down

C++ (first post !)

#include <iostream>

int main (int argc, char* argv[])
{
int threeRem;
int fiveRem;

for (int i = 1; i <= 100; i++)
{
threeRem = i % 3;
fiveRem = i % 5;

if (fiveRem == 0 && threeRem == 0)
std::cout << "FizzBuzz" << std::endl;
else if (threeRem == 0)
std::cout << "Fizz" << std::endl;
else if (fiveRem == 0)
std::cout << "Buzz" << std::endl;
else
std::cout << i << std::endl;
}

return(0);
}
link|flag
vote up 3 vote down

Python, modifying slightly from akdom

print[(((not i%3)*'Fizz')+((not i%5)*'Buzz')) or i for i in range(1,101)]

73 characters and still pritty legible!

print["Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i for i in range(1,101)]

Down to 62 and more legible now (thx @lbrandy)

link|flag
vote up 1 vote down

Of course for runtime speed, you want a lookup table: in C++

enum fbType {num,fizz,buzz,fizzbuzz};
fbType FizzArray[100]{num,num,fizz,num,buzz,fizz,num,num,fizz,buzz <snip large array>,fizz,buzz}
int count=0;
while (count < 100)
{
switch(FizzArray[count++])
{
case fizz:
std::cout << "Fizz" << std::endl;
break;
case buzz:
std::cout << "Buzz" << std::endl;
break;
case fizzbuzz:
std::cout << "FizzBuzz" << std::endl;
break;
default:
std::cout << count << std::endl;
}
}
link|flag
vote up 16 vote down

From the Perl monks ( modified to take advantage of Perl 5.10's "say" :-)

say+(Fizz)[$_%3].(Buzz)[$_%5]||$_ for 1..100

44 chars.

link|flag
show 1 more comment
1 2 3 4 5 6 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.