vote up 66 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 1 more comment

162 Answers

vote up 5 vote down

Here's how I did it in Groovy (69 chars), but somehow someone did this in 57 chars:

(1..100).each{s=(it%3?"":"fizz")+(it%5?"":"buzz");println s==""?it:s}
link|flag
vote up 5 vote down

When we were interviewing folk for a new position, we used to have candidates walk through this (in the language of their choice, though our shop uses C++) as a bozo filter. I can see that it's now too popular to use this way. ;^)

Occasionally, I'd get someone who claimed to know C++ inside-out, including the libraries. Usually we found some obvious holes. As a lark, I coded up the following FizzBuzz, and asked them to explain how it worked:

//////////////////////////////////////////////////////////////////////
//
// Stream obfuscated FizzBuzz example. Ignores most stream failure
// modes and iword/pword callbacks in the interests of
// brevity/obfuscation.

#include <iostream>
#include <string>
#include <ios>
#define IOS std::ios_base
#include <ostream>

using std::cout;
using std::endl;
using std::ostream;
using std::string;

int getIdx()
{
   static const int myIdx = IOS::xalloc();
   return myIdx;
}

class FizzBuzzer
{
public:
   FizzBuzzer() {};
   ~FizzBuzzer() {};

   ostream &print_on(ostream &os) const;
};

ostream &FizzBuzzer::print_on(ostream &os) const
{
   const string fizz("Fizz");
   const string buzz("Buzz");

   long i  = os.iword(getIdx());
   void *p = os.pword(getIdx());

   if (!p)                                 os << i;
   if (reinterpret_cast<long>(p) & 0x02)   os << fizz;
   if (reinterpret_cast<long>(p) & 0x01)   os << buzz;

   return os;
}

class FizzBuzzManip
{
public:

   explicit FizzBuzzManip(int val) : val_d(val) {};

   int divisible3() const { return (val_d % 3) ? 0 : 1; }
   int divisible5() const { return (val_d % 5) ? 0 : 1; }

private:

   int val_d;

   friend ostream &operator<<(ostream &os, const FizzBuzzManip &fz)
   {
      os.iword(getIdx()) = fz.val_d; 
      os.pword(getIdx()) = reinterpret_cast<void *>( (fz.divisible3() << 1) | fz.divisible5() );

      return os;
   }
};

ostream &operator<<(ostream &os, const FizzBuzzer &fz)
{
   return fz.print_on(os);
}

int main()
{
   FizzBuzzer theFizzBuzz;

   for (int i = 1; i <= 100; ++i) {
      cout << FizzBuzzManip(i) << theFizzBuzz << endl;
   }
}
link|flag
1  
Man, I haven't programmed C++ in a long time and this post doesn't make me want to go back! – GordonG Jan 15 at 10:02
show 3 more comments
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 5 vote down

In C:

F

Compile with:

gcc -DF='main(){int i;for(i=0;i<101;puts(i++%5?"":"Buzz"))printf(i%3?i%5?"%d":"":"Fizz",i);}' fizzbuzz.c
link|flag
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 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 4 vote down

C#

for(int i=1;i<101;i++)
    Console.Write("{0: 0;; }{1:;;Fizz}{2:;;Buzz}",i%3*i%5==0?0:i,i%3,i%5);

92 mandatory characters

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

Powershell:

0..100 | %{
if (!($_ % 3)){
    if(!($_ % 5)){"FizzBuzz"}
    "Fizz"
}elseif(!($_ % 5)){"Buzz"}
else{$_}
}
link|flag
vote up 4 vote down

Here it is in Dataflex. (Why did I get to have to program in the unknown language)

procedure fizzBuzz
    integer i
    for i from 1 to 100
        if (mod(i,15)) eq 0 showln "fizzbuzz"
        else if (mod(i,3)) eq 0 showln "fizz"
        else if (mod(i,5)) eq 0 showln "buzz"
        else showln i
    loop
end_procedure
link|flag
show 2 more comments
vote up 4 vote down

Ruby:

require 'rubygems'
require 'fizzbuzz'
puts fizzbuzz

:-D

link|flag
3  
The FizzBuzz gem is worth reading. It includes a total of 8 solutions, each clever in its own little way. – jleedev Mar 12 at 1:25
vote up 4 vote down

A short solution, in C:

main(i)
{
  for(; i < 101; puts(i++ % 5 ? "" : "Buzz"))
    printf(i % 3 ? i % 5 ? "%d" : "" : "Fizz", i);
}
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 4 vote down

C#:

    static void Main(string[] args)
    {
        string[] vals ={"FizzBuzz", "{0}", "{0}", "Fizz", "{0}", 
                        "Buzz", "Fizz", "{0}", "{0}", "Fizz", 
                        "Buzz", "{0}", "Fizz", "{0}", "{0}" };
        for (int i = 1; i <= 100; i++)
        {
            Console.WriteLine(vals[i % 15], i);
        }
    }
link|flag
show 1 more comment
vote up 4 vote down

Note: this is just for my C practice. I am just thrilled it even works :)

main()
{ 
     int i;

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

       { 

       if  (
       (i % 3 == 0) && (!(i % 5 == 0)) 
          )
             { printf ("Fizz\n");
              continue;
             }

            else if (
            (i % 3 != 0) && (i % 5 == 0 )
            )
                { printf ("Buzz\n");
             continue;
             }

            else if (
            (i % 3 == 0) && (i % 5 == 0)
            )
                { printf ("FizzBuzz\n");
                 continue;
                }
           else if  (
           (!(i % 3 ==0)) && (!(i % 5 == 0))
           )
                { printf ("%d\n", i);
                continue;
                }   

          }  
           system("PAUSE");   
          return 0;

}
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 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 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 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 3 vote down

I happened to be using this exercise to learn Lua:

for n=1,100 do 
  if n%3==0 and n%5==0 then
    print("FizzBuzz")
  elseif n%3==0 then 
    print("Fizz") 
  elseif n%5==0 then 
    print("Buzz") 
  else 
    print(n) 
  end 
end
link|flag
vote up 3 vote down

Another JavaScript solution (110 characters) :)

f='Fizz';b='Buzz';for(i=1;i<101;i++){sOut=(i%15==0)?f+b:((i%3==0)?f:((i%5==0)?b:i));document.write(sOut+" ");}
link|flag
vote up 3 vote down

Since nobody has done anything with a graphing calculator yet, here's my version in TI-BASIC. This was written on a TI-83 Plus graphing calculator which doesn't have a modulus operation built in, hence the use of the fPart function.

:For(X,1,100
:1->A
:If 0=3*fPart(X/3:3->A
:If 0=5*fPart(X/5:5A->A
:If A=1:Disp X
:If A=3:Disp "FIZZ
:If A=5:Disp "BUZZ
:If A=15:Disp "FIZZBUZZ
:End

If I am counting them right, the total symbols should be 93. Note that the TI-83 stores some of the program symbols such as "For(" as a single symbol even though it is displayed as four characters.

link|flag
vote up 3 vote down

WORKING-STORAGE SECTION.                                         

77  FIZZ-NUM  PIC 9(01) VALUE 3.                                 
77  BUZZ-NUM  PIC 9(01) VALUE 5.                                 

01  WS-FLAGS.                                                    
    05  FIZZ-FLAG         PIC 9(01).                     
        88  PRINT-FIZZ      VALUE 0.                             
    05  BUZZ-FLAG         PIC 9(01).                     
        88  PRINT-BUZZ      VALUE 0.                             

01  WS-DETAIL-LINE.                                              
    05  FILLER            PIC X(02).                             
    05  WS-DETAIL-NUMBER  PIC ZZ9.                               
    05  FILLER            PIC X(03) VALUE ' : '.                 
    05  WS-DETAIL-STRING  PIC X(08).                             

77  I         PIC 9(03).                                         

PROCEDURE DIVISION.                                              

0000-MAIN.                                                       
    PERFORM VARYING I FROM 1 BY 1 UNTIL I > 100                  
        MOVE SPACES TO WS-DETAIL-LINE                            

        COMPUTE FIZZ-FLAG = FUNCTION MOD(I, FIZZ-NUM)            
        COMPUTE BUZZ-FLAG = FUNCTION MOD(I, BUZZ-NUM)            

        EVALUATE TRUE                                            
            WHEN PRINT-FIZZ AND PRINT-BUZZ                       
                MOVE 'FIZZBUZZ' TO  WS-DETAIL-STRING              
            WHEN PRINT-FIZZ                                      
                MOVE 'FIZZ'     TO  WS-DETAIL-STRING              
            WHEN PRINT-BUZZ                                      
                MOVE 'BUZZ'     TO  WS-DETAIL-STRING              
            WHEN OTHER                                           
                MOVE I          TO  WS-DETAIL-STRING              
        END-EVALUATE                                             

        MOVE I TO WS-DETAIL-NUMBER                               

        DISPLAY WS-DETAIL-LINE                                   

    END-PERFORM.                                                 


I decided to try this in COBOL as a learning exercise and a comparative language study. Wouldn't you know it... it is much longer than my solution in C and took me much longer to write, lookin up the COBOL modulus function (thusfar, financial processing hasn't seen a great need for this) and all that.

I changed the spec a bit to also show me the current value of I, just to make things a bit nicer on me when I looked to make sure it worked. (it does)

link|flag
vote up 3 vote down

C++ version without any runtime conditional branches:

#include <iostream>
#include <sstream>

using namespace std;

inline string stringify(int x)
{
    ostringstream o;
    o << x;
    return o.str();
} 

template <int N>
struct Enumerator
{
    typedef Enumerator<N-1> Prev;
    enum {FizzMod = N%3, BuzzMod = N % 5, };

    static string FizzBuzz() 
    {
    	return Prev::FizzBuzz() + (FizzMod ? string("") : "Fizz") + (BuzzMod ? "" : "Buzz") + ((FizzMod && BuzzMod) ? stringify(N) : "") + "\n";
    }
};

template <>
struct Enumerator<0>
{
    static string FizzBuzz()
    {
    	return "";
    }
};

int main()
{
    string fizzBuzz = Enumerator<100>::FizzBuzz();
    cout << fizzBuzz;
}
link|flag
show 1 more comment
vote up 3 vote down

Ah what the heck - here's a C# version using list comprehensions:

(from i in Enumerable.Range(1, 100)
 let fizz = i % 3 == 0 ? "Fizz" : null
 let buzz = i % 5 == 0 ? "Buzz" : null
 let fizzBuzz = fizz + buzz
 select fizzBuzz != string.Empty ? fizzBuzz : i.ToString())
 .ToList().ForEach(Console.WriteLine);
link|flag
vote up 3 vote down

Never reinvent the wheel -

import urllib, re
fbregexp = re.compile(".*<pre><code>@echo off([0-9a-zA-Z \n]+)</code></pre>", re.DOTALL)
wf = urllib.urlopen("http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem")
match = fbregexp.match(wf.read())
wf.close()
if match:
    print ''.join(match.group(1).split("echo ")).strip()
else:
    print "Unable to fetch fizzbuzz data."
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 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

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

My Java version:

import static java.lang.System.out;
public class FizzBuzz {
public static void main(String[] args) {
boolean a, b;
for (int i = 1; i <= 100; i++) {
if (a = (i % 3 == 0))
out.print("Fizz");
if (b = (i % 5 == 0))
out.print("Buzz");
if (!a && !b)
out.print(i);
out.println();
}
}
}
link|flag

Your Answer

Get an OpenID
or

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