vote up 71 vote down star
48

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

168 Answers

vote up 2 vote down

Javascript (66 characters):

for(var i=1;i<101;i++){alert((i%3?"":"fizz")+(i%5?"":"buzz")||i)};

Warning: Switch alert() to console.log() unless you've got a lot of time to spare

link|flag
vote up 2 vote down

because golf and J are fun:

> (((0 = 3 | ]) + 2 * 0 = 5 | ]) { ('Fizz'([ ; ] ; ,)'Buzz') ;~ ":)"0 >: i.100

55 characters with spaces removed, although I'm sure there's room for improvement.

(((0 = 3 | ]) + 2 * 0 = 5 | ]) { ('Fizz'([ ; ] ; ,)'Buzz') ;~ ])"0 >: i.100

53 if you don't mind boxed format

link|flag
vote up 2 vote down

Clojure. Golfing: 168 chars.

(defn $([n]($ 1 n))([n t](let[f(=(mod n 3)0)b(=(mod n 5)0)](if(<= n t)(do(if
f(print "Fizz"))(if b(print "Buzz"))(if(not(or f b))(print
n))(newline)(recur(inc n)t))))))

To be called as such: ($ n)

And now legible:

(defn fizzbuzz
  ([n] (fizzbuzz 1 n))
  ([n top]
    (let [fizz (=(mod n 3)0)
          buzz (=(mod n 5)0)]
      (if (<= n top)
        (do
          (if fizz
            (print "Fizz"))
          (if buzz
            (print "Buzz"))
          (if (not (or fizz buzz))
            (print n))
          (newline)
          (recur (inc n) top))))))

To be called like so: (fizzbuzz n)

Could probably be shorter, but I'm still learning the language.

link|flag
vote up 2 vote down

Here is a one liner in Lua (95 characters):

for i=1,100 do print(i%15==0 and "FizzBuzz" or i%3==0 and "Fizz" or i%5==0 and "Buzz" or i) end


(EDIT) And here is the generalized version:

function f(t) for i=t.s,t.e do r="" for _,v in ipairs(t) do r=r..(i%v[1]==0 and v[2] or "") end print(#r==0 and i or r) end end
f{s=1,e=100,{3,"Fizz"},{5,"Buzz"}}
link|flag
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 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 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 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

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 1 vote down

@Pat

I can't believe that works. I don't have a new enough version of perl to try it. It appears to contain some seriously hilariously auto-black-magic. Like I presume you have a list with 'fizz' that you are indexing based on the mod directly and this index is allowed to be out of range?

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

@Coincoin and Pat: You've set new records for C# and Perl! You should submit them to http://www.shinh.org/p.rb?FizzBuzz and become instantly famous!

link|flag
vote up 1 vote down

@Geocoin: If you're going to say "runtime speed", then say it like you mean it: using endl (write newline + force flush) is almost certain to make your program even more I/O-bound than it already is, and makes whatever other optimisations you have totally irrelevant.

Moral of the story: cout << endl is not the same as cout << '\n'. Only use endl if you actually require your output to be flushed at that point. Here's an article by Scott Meyers (author of the Effective C++ series) that says it much better than I can. :-)

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

Simple python:

for i in range(1,101):
if (i % 5 == 0) and (i % 3 == 0):
print "FizzBuzz"
continue
if i % 3 == 0:
print "Fizz"
continue
if i % 5 == 0:
print "Buzz"
continue
print i
link|flag
vote up 1 vote down

I'm still waiting to see the COBOL implementation. :-)

link|flag
vote up 1 vote down

Here is a bunch of solutions in different languages (C, C++, D, Haskell, Lua, OCaml, PHP ...)

link|flag
vote up 1 vote down
  1. Build the output string with any of the algorithms (that work) mentioned by the others
  2. Copy the output string to your source code as a constant (too bad if you use Brainfuck)
  3. Output the constant

    var TheAnswerToFizzBuzz = '1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 17 Fizz 19 Buzz Fizz 22 23 Fizz Buzz 26 Fizz 28 29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz 41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz 61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz Fizz 82 83 Fizz Buzz 86 Fizz 88 89 FizzBuzz 91 92 Fizz 94 Buzz Fizz 9798 Fizz Buzz' // could be wrong :)

    print TheAnswerToFizzBuzz

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

I just thought I'd correct Mark's elegant C implementation. Excuse me for being a pedant, but it was only printing numbers 1 to 99. Fred's C solution, however, needs quite a bit of work. Fred, which C implementation supports the ``then'' keyword?

/* Improvement on Mark's C solution */
#include <stdio.h>
#define p printf
int main() {
    int i;
    for (i = 1; i <= 100; ++i) {
        (i % 3) == 0 ? p("%d=Fizz", i) : p("%d=", i);
        (i % 5) == 0 ? p("Buzz\n") : p("\n");
    }
    return 0;
}

I'm quite sure that this is the first C solution in this thread that will compile and does almost exactly what was requested.

link|flag
show 1 more comment
vote up 1 vote down
int main()
{
   int i;
   for(i=1;i<=100;i++)
       printf({"%d\n", "Fizz", "Buzz", "FizzBuzz"}[(!(i%3))+2*!(1%5)],i);
   return 0;
}

That's C but with 2 edits it also works in D or with an include, C++

link|flag
vote up 1 vote down
for every integer 1 to 100
    if the integer is divisible by 3
        print "Fizz"
    end if
    if the integer is divisible by 5
        print "Buzz"
    end if
    print newline
end for

I believe this also works, and it's simpler than the pseudocode given in the currently accepted answer.

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

Here is Fizz Buzz in Chrome

method GlobalApplication.FizzBuzz;
begin
    var i: Int32 := 1;
    while (i <= 100) do begin
        var fizz: Boolean := ((i mod 3) = 0);
        var buzz: Boolean := ((i mod 5) = 0);
        if fizz then 
            Console.WriteLine('Fizz');
        if buzz then 
            Console.WriteLine('Buzz');
        if not (fizz or buzz) then 
            Console.WriteLine(i);
        inc(i)
    end
end;
link|flag
vote up 1 vote down

Here is my version in C#

public void FizzBuzz()
{
    for (int i = 1; i <= 100; i++)
    {
        bool fizz = (i % 3) == 0;
        bool buzz = (i % 5) == 0;
        if (fizz)
        {
            Console.WriteLine("Fizz");
        }
        if (buzz)
        {
            Console.WriteLine("Buzz");
        }
        if (!(fizz || buzz))
        {
            Console.WriteLine(i);
        }
    }
}
link|flag
vote up 1 vote down
using System;

class FizzBuzz
{
    static void Main(string args[])
    {
        for(int i = 1; i <= 100; i++)
        {
            if(i % 15 == 0)     Console.WriteLine("Fizz Buzz");
            else if(i % 3 == 0) Console.WriteLine("Fizz");
            else if(i % 5 == 0) Console.WriteLine("Buzz");
            else                Console.WriteLine(i);
        }
    }   
}
link|flag
vote up 1 vote down

C# Version. Nothing new, just yet another variation.

String output; 
    for (int i=1;i<=100;i++)
    {
        output = (i % 3 == 0) ? "Fizz" : ""; 
        output = (i % 5 == 0) ? output + "Buzz" : output; 
        if (output.Equals("")) output = i.ToString();
        Response.Write(output + "<br />"); 
    }
link|flag
vote up 1 vote down

Ok, first post on the site. A C++ version, obfuscated of course, with some preprocessor trickery as well.

#include <iostream>
#define d(a,z) a z
#define _(a,z) d(#z,#a)
#define b(b) _(b,b)
#define i _(i,f)c
#define u _(u,b)c
#define c b(z)
void main()
{
  char t[4];int j=0x30490610;
  for(*(int*)t=48;t[2]?0:t[1]?++t[1]==58?t[1]=48,++t[0]==58?t[0]=49,t[1]=t[2]=48:1:1:++t[0]==58?t[0]=49,t[1]=48:1;j=(j>>2)??!((j&3)<<28))std::cout<<(j&3?j&1?j&2?i u:i:u:t)<<'\n';
}

There's also no division or modulo nor conversion from integer to string.

Built using DevStudio 2005.

Skizz

link|flag
vote up 1 vote down

My version with QBASIC:

FOR i = 1 TO 100
        skip = 0
        IF i MOD 3 = 0 THEN
                PRINT "Fizz";
                skip = 1
        END IF
        IF i MOD 5 = 0 THEN
                PRINT "Buzz";
                skip = 1
        END IF
        IF skip = 0 THEN PRINT i;
        PRINT
NEXT i
link|flag
vote up 1 vote down

Or, wearing my software manager hat, my solution would be this:

"Hey, Johnny, can I see you for a second?"

:: Johnny enters ::

"Yes?"

"Go solve FizzBuzz for me, wouldja? You can charge the time to code #94921.228."

or, better yet, just enter a bug into FogBugz:

"FizzBuzz implementation is empty"

and assign it to Johnny.

link|flag
vote up 1 vote down

PHP 1 liner

<?php while (++$i <= 100) echo (!($i % 15) ? "fizzbuzz" : (!($i % 3) ? "fizz" : (!($i % 5) ? "buzz" : $i))) . "\n"; ?>
link|flag
vote up 1 vote down

Classic VB, 85 chars without white space:

f = "Fizz"
b = "Buzz"
For i = 1 To 100
    Debug.Print IIf(i Mod 15, IIf(i Mod 3, IIf(i Mod 5, i, b), f), f & b)
Next

Yeah, pretty lame.

link|flag
vote up 1 vote down

perl -e'foreach $x ( 1 .. 100) { if( $x % 3 == 0 ) { print "Fizz"; } if( $x % 5 == 0 ) { print "Buzz"; }unless ( $x % 3 == 0 || $x % 5 == 0 ) { print "$x" } print "\n"; }'

Works, but could probably stand more obfuscation.

link|flag
vote up 1 vote down

ok, my 0.02$

for(int i=0;i<100;i++) printf(((!i%3)+(!i%5))?((!i%3)?"Fizz":"")+((!i%5)?"Buzz":"":i));

It's not pretty and it needs documentation, but it's fun!

link|flag

Your Answer

Get an OpenID
or

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