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

You people tend to complicate things a lot, huh?

@echo off
echo 1
echo 2
echo Fizz
echo 4
echo Buzz
echo Fizz
echo 7
echo 8
echo Fizz
echo Buzz
echo 11
echo Fizz
echo 13
echo 14
echo FizzBuzz
echo 16
echo 17
echo Fizz
echo 19
echo Buzz
echo Fizz
echo 22
echo 23
echo Fizz
echo Buzz
echo 26
echo Fizz
echo 28
echo 29
echo FizzBuzz
echo 31
echo 32
echo Fizz
echo 34
echo Buzz
echo Fizz
echo 37
echo 38
echo Fizz
echo Buzz
echo 41
echo Fizz
echo 43
echo 44
echo FizzBuzz
echo 46
echo 47
echo Fizz
echo 49
echo Buzz
echo Fizz
echo 52
echo 53
echo Fizz
echo Buzz
echo 56
echo Fizz
echo 58
echo 59
echo FizzBuzz
echo 61
echo 62
echo Fizz
echo 64
echo Buzz
echo Fizz
echo 67
echo 68
echo Fizz
echo Buzz
echo 71
echo Fizz
echo 73
echo 74
echo FizzBuzz
echo 76
echo 77
echo Fizz
echo 79
echo Buzz
echo Fizz
echo 82
echo 83
echo Fizz
echo Buzz
echo 86
echo Fizz
echo 88
echo 89
echo FizzBuzz
echo 91
echo 92
echo Fizz
echo 94
echo Buzz
echo Fizz
echo 97
echo 98
echo Fizz
echo Buzz
link|flag
2  
So simple and elegant! – Cookey Sep 12 '08 at 16:44
52  
Of course I cheated, doh! I wrote a small Delphi program that generated this code. – gabr Sep 21 '08 at 8:19
21  
This is how you program if you're paid by the line. – Barry Brown Oct 16 '08 at 1:08
16  
I'd hire you if you wrote this in an interview. – TM Dec 31 '08 at 4:11
1  
If refactored in C or Assembler it would be the a close to optimum solution for speed/performance on modern hardware! although: main (argc argv) { print "\n1\n2\nFizz\n4\nBuzz ......... \n97\nFizz\nBuzz"; return; } Is probably the optimal C solution! – James Anderson Sep 17 at 2:04
show 6 more comments
vote up 72 vote down

Don't forget lolcode...http://lolcode.com/contributions/cheezburger-fizzbuzz

(Not My Code)

For the clicky impaired:

HAI
BTW LOL I HAS A FIZZBUZZ EXAMPLE

CAN HAS STDIO?
I HAS A NUMBAR
LOL NUMBAR R 0

I HAS A MACKSIMUM
LOL MACKSIMUM R 100

IM IN YR LOOPZ
    LOL NUMBAR R NUMBAR UP 1

    I HAS A NUMBAR_IZ_CHEEZ
    LOL NUMBAR_IZ_CHEEZ R 0

    I HAS A NUMBAR_IZ_BURGER
    LOL NUMBAR_IZ_BURGER R 0

    I HAS A COUNTAR
    LOL COUNTAR R 0 

    I HAS A MAX_COUNTAR
    LOL MAX_COUNTAR R NUMBAR OVAR 3

    IM IN YR LOOP
    	LOL COUNTAR R COUNTAR UP 1

    	BTW I CHECKIN FOR CHEEZ LOL
    	I HAS A CHEEZ_NUMBAR
    	LOL CHEEZ_NUMBAR R COUNTAR TIEMZ 3
    	IZ CHEEZ_NUMBAR LIEK NUMBAR?
    	YARLY
    		LOL NUMBAR_IZ_CHEEZ R 1
    	KTHX

    	BTW I CHECKIN FOR BURGER LOL
    	I HAS A BURGER_NUMBAR
    	LOL BURGER_NUMBAR R COUNTAR TIEMZ 5
    	IZ BURGER_NUMBAR LIEK NUMBAR?
    	YARLY
    		LOL NUMBAR_IZ_BURGER R 1
    	KTHX

    	IZ COUNTAR BIGR THAN MAX_COUNTAR?
    	YARLY
    		GTFO
    	KTHX
    KTHX

    IZ NUMBAR_IZ_CHEEZ LIEK 1 AND NUMBAR_IZ_BURGER LIEK 1?
    YARLY
    	VISIBLE "CHEEZBURGER"
    NOWAI
    	IZ NUMBAR_IZ_CHEEZ LIEK 1?
    	YARLY
    		VISIBLE "CHEEZ"
    	NOWAI
    		IZ NUMBAR_IZ_BURGER LIEK 1?
    		YARLY
    			VISIBLE "BURGER"
    		NOWAI
    			VISIBLE NUMBAR
    		KTHX
    	KTHX
    KTHX

    IZ NUMBAR UP 1 BIGR THAN MACKSIMUM?
    YARLY
    	GTFO
    KTHX
KTHX
KTHXBYE
link|flag
2  
... I love.... *wants to get a .netlolcompiler – firoso May 26 at 15:50
show 5 more comments
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 59 vote down

And another implementation in one of the underrated programming languages, thanks to some japanese people. And yes, that actually works, just tested it in an IDE.

>++++++++++[<++++++++++>-]>>>+++>+++++>+<<<<<<
[
 >>>+
 >- [<<+>>-]<<<+>[<[-]>>>+<<-]<[>>>+++>>[-]<<<<<- +++++++[>++++++++++<-]>.<+++++++[>+++++<-]>.<++++[>++++<-]>+..[-]<]>>
 >>- [<<<+>>>-]<<<<+>[<[-]>>>>+<<<-]<[>>>>+++++>[-]<<<<<- +++++++++++[>++++++<-]>.<+++++++[>+++++++<-]>++.+++++..[-]<]>>
 >>>
 [-
  <<<[<+>>>>+<<<-]<[>+<-]>>>>
  [
   >++++++++++<
   [>-[>+>+<<-]>[<+>-] +>[<[-]>-]< [>>+<<<++++++++++>-]<<-]
   >---------- >>>[<<<<+>>>>-] <<<<
   >>>>>+> >>[-] <[>+<-] <[>+<-] <<<<< [>>>>>+<<<<<+] <
  ]
  >>>>>
  [ <++++++[>>++++++++<<-]>> . [-] >[<+>-] >[<+>-] <<<-]
  <<<<<
 ]+
 <<<<<
 +++++++++++++.---.[-]
<-]
link|flag
9  
you sir... you... are damaged! – DFectuoso Dec 31 '08 at 17:57
1  
For some reason I thought you meant that BF was underrated because of some Japanese people, so your link was disappointingly juiceless. ;) – Kev Jan 9 at 23:54
4  
I think this is in fact a cleverly disguised Whitespace program :D – Jonas Kölker Mar 3 at 13:17
show 2 more comments
vote up 50 vote down

Here's a long, yet golfed, perl solution:

(                       (
''))=~('('.'?'.'{'.("\`"|
'%').('['^'-').('`'|'!').
('`'|',').'"'.('['^'+').(
         ((            (
         (             ((
         (             ((
         '['         ))))
          )))))^(')')).(
           '`'|"\)").(
         (              (
         '`'))|'.').('['^
         '/').'+'.('(').(
         '`'^'&').(('`')|
                     ((
                      ((
                    ')'))
                   ))).+(
                   "\["^

         (              (
         '!'))).('['^'!')    .')'
         .'['.'\\'.('$').    '_'.
         '%'.('^'^(('`')|     ((
         (              (
         '-')))))).(']').
         '.'.'('.('`'^'"'
         ).('['^'.').('['
                       ^
                       ((
                       ((
         '!'))))).(('[')^
         '!').')'.('[').
         '\\'.'$'.'_'
                        .
            '%'.('^'^('`'|'+'
         )).']'.'|'.'|'.'\\'.
         '$'.'_'.','.'\\'.'$'
         .+             (
         ((
           (
                  (
                  (
                  (
                  (
            '/')))))))).(
                  (
                  (
                  (
                   '`')))|
              '&').('`'|"\/").(
           '['^')').('{'^'[').('^'
         ^('`'|'/'         ))."\.".
         ((                      '.'

         )                         )
         .                         (
         '^'^('`'|'/')).('^'^(('`')|
         '.')).('^'^('`'|'.')).('!'^
         (              (          (
         (              (          (
                        (          (
                        (          (
                       '+'         )
                      )))))        )
                                   )
                                  ))
                               ).'"'

         .              (
         '}').')');$:='.'    ^'~'
         ;$~='@'|"\(";$^=    ')'^
         '[';$/='`'|"\.";     $,
                     ='('
         ^+           '}'
         ;($\)         =(
         ('`'))|        (
         (  "\!"));     (
         (    $:))=')'  ^
         (       '}');$~=
         (          '*')|
         ((            ((
         '`')
                     )));
         $^           =((
         '+'))         ^+
         '_';$/=        (
         (  "\&"))|     (
         (    '@'));$,  =
         (       '[')&'~'
         ;          ($\)=
         ((            ((
         ',')

         )))^                   '|';
         $:=('.')^         "\~";$~=
           '@'|'(';$^=')'^"\[";$/=
               '`'|'.';$,='('

                   ^'}';$\
              ='`'|'!';$:="\)"^
           '}';$~='*'|'`';$^="\+"^
         ('_');$/=         '&'|'@';
         $,                      =((

           (             "\[")))&
          ((           ('~')));$\=
         ((           ','))^    '|'
         ;           ($:)=        ((
        '.'))^'~';$~='@'|'(';$^="\)"^
         (          '[');          (
         (          $/))=          (
        '`')|'.';$,='('^'}';$\=('`')|
         ((        '!')            )
         ;$:=    (')')^           (
           ('}'));$~=            (

         (
         (
         (
         (
         (
         (
         (
         (

         (                     ((
         '*')                ))  ))
            )))             )      )
               ))|          (      (
                   '`'       ));$^=
           '+'       ^((
         ((   ((        '_'
         )                  )))
         )     )              ;$/
          ='&'|                  '@'

          ;$,                    =
         '['                     &+
         ((                       ((
         (                         (
         (                         (
         (             ((          (
         '~'         ))))))      )))
         )));(    ($\))  =','^"\|";
          $:='.'^"\~";    $~="\@"|
            "\(";$^=


         ')'^                   '[';
         $/=('`')|         "\.";$,=
           '('^'}';$\='`'|"\!";$:=
               ')'^'}';$~='*'

          |+
         '`';
         ($^)

                   =('+')^
              '_';$/='&'|'@';$,
           ='['&'~';$\=','^'|';$:=
         '.'^"\~";         $~="\@"|
         ((                      '('

         )                         )
         ;                         (
         $^)=')'^'[';$/='`'|"\.";$,=
         '('^'}';$\='`'|'!';$:="\)"^
         (              (          (
         (              (          (
         (              (          (
         (              (          (
         (             '}'        ))
         ))           ))))       )))
         ));(       $~)= '*'|'`';$^
          ='+'^"\_";$/=   '&'|'@';
            $,='['&'~'      ;$\=
              "\,"^
                        (
           '|');$:=('.')^
         '~';$~='@'|"\(";
         $^=')'^('[');$/=
         ((
         ((
          (
         '`')))))|'.';$,=
         '('^'}';$\="\`"|
         '!';$:=')'^"\}";
                     ($~)
         =(           '*'
         )|'`'         ;(
         $^)='+'        ^
         (  '_');$/     =
         (    '&')|'@'  ;
         (       $,)='['&
         (          '~');
         $\            =(
         ',')
                     ^'|'
         ;(           $:)
         ='.'^         ((
         "\~"));        (
         (  ($~)))=     (
         (    ('@')))|  (
         (       '('));$^
         =          "\)"^
         ((            ((
         '[')

         )));                   ($/)
         ='`'|'.';         $,="\("^
           '}';$\='`'|'!';$:="\)"^
               '}';$~='*'|'`'

                   ;$^='+'
              ^'_';$/='&'|"\@";
           $,='['&'~';$\=','^"\|";
         $:=('.')^         "\~";$~=
         ((                      '@'

           )             )|'(';$^
          =(           ')')^'[';$/
         =(           "\`")|    '.'
         ;           ($,)=        ((
        '('))^'}';$\='`'|'!';$:="\)"^
         (          '}');          (
         (          $~))=          (
        '*')|'`';$^='+'^'_';$/=('&')|
         ((        '@')            )
         ;$,=    ('[')&           (
           ('~'));$\=            (

         (
         (
         (
         (
         (
         (
         (
         (

         (                     ((
         ',')                ))  ))
            )))             )      )
               ))^          (      (
                   '|'       ));$:=
           '.'       ^((
         ((   ((        '~'
         )                  )))
         )     )              ;$~
          ='@'|                  '('

          ;(           ($^))=
         ((             (  (')'))))^
         (              ((      '[')
         )              );      ($/)
         =              ((      '`')
         )|            '.'      ;$,=
         "\("^      '}';$\      ='`'
          |'!';$:=')'^'}'       ;$~=
            '*'|'`';$^=         '+'^


         '_';                   ($/)
         ='&'|'@';         $,="\["&
           '~';$\=','^'|';$:="\."^
               '~';$~='@'|'('

          ;(               ($^))=
         ')'^   '[';$/='`'|('.');$,=
         '('^      '}';$\='`'|"\!";

          $:               ="\)"^
         '}';   $~='*'|'`';$^=('+')^
         '_';      $/='&'|('@');$,=

           (             '[')&'~'
          ;(           $\)=','^'|'
         ;(           ($:))=    '.'
         ^           "\~";        $~
        ='@'|'(';$^=')'^'[';$/=('`')|
         (          '.');          (
         (          $,))=          (
        '(')^'}';$\='`'|'!';$:=(')')^
         ((        '}')            )
         ;$~=    ('*')|           (
           ('`'));$^=            (

         (
         (
         (
         (
         (
         (
         (
         (

          ((
         '+')
       ))))))

           )             )))^'_';
          $/           ='&'|'@';$,
         =(           "\[")&    '~'
         ;           ($\)=        ((
        ','))^'|';$:='.'^'~';$~="\@"|
         (          '(');          (
         (          $^))=          (
        ')')^'[';$/='`'|'.';$,=('(')^
         ((        '}')            )
         ;$\=    ('`')|           (
           ('!'));$:=            (

         (
         ')')
            )^+
               '}'
                   ;$~
                     =((
                        '*'
                            ))|
                              '`'
                                 ;$^
                        =
         '+'^'_';$/='&'|"\@";$,=
         '['&'~';$\=','^'|';$:='.'^
         '~';$~='@'|'(';$^=')'^"\[";
                        (      $/  )
                        =     ('`')|
                              "\.";
              ($,)=
           '('^'}';$\=
          '`'|'!';$:=')'
         ^+           ((
         (              (
         (              (
         (             ((
         '}')       ))))
           ))));$~='*'|
             "\`";$^=
         (              (
         '+'))^'_';$/='&'
         |'@';$,='['&'~';
         $\=','^('|');$:=
                     ((
                      ((
                    '.'))
                   ))^'~'
                   ;($~)












         =
         (                    (
         '@'))|'(';$^=')'^'[';$/=
         '`'|'.';$,='('^'}';$\='`'
         |
         (
          ((
         '!')
         ));(

          $:
         )=((
         ')')

         )
         ^                    (
         '}');$~='*'|'`';$^="\+"^
         '_';$/='&'|'@';$,='['&'~'
         ;
         (
                  $\)="\,"^
             '|';$:='.'^'~';$~=
           '@'|'(';$^=')'^'[';$/=
          "\`"|               "\.";
         $,                       =(
         (                         (
         (                         (
         ((                      '('
          )))))               ))^((
           '}'));$\='`'|('!');$:=
              ')'^'}';$~="\*"|

                  ('`');$^=
             '+'^'_';$/='&'|'@'
           ;$,='['&'~';$\=','^'|'
          ;($:)               ='.'^
         ((                       ((
         (                         (
         (                         (
         ((                      '~'
          )))))               )))))
           ;$~='@'|'(';$^=')'^'['
              ;$/='`'|"\.";#;#

I'm kind of astounded that markdown doesn't have spoiler tags that would have conserved that vertical space...

link|flag
3  
That is the most bizzare code I've ever seen! It looks more like ascii art than anything that works. +1 for sheer coolness. – The Wicked Flea Oct 30 '08 at 14:21
4  
Ascii art code...sounds like time for another StackOverflow question... – Slapout Dec 31 '08 at 14:27
1  
Reminds me of the old IOCCC days... – Kev Jan 10 at 0:03
1  
@Kev: Acme::EyeDrops – ysth Jan 19 at 17:23
show 7 more comments
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 38 vote down

A python solution that uses neither division nor modulus:

def div3():
    while True:
        yield ""
        yield ""
        yield "Fizz"

def div5():
    while True:
        yield ""
        yield ""
        yield ""
        yield ""
        yield "Buzz"

data = zip(div3(), div5(), range(1, 101))
for (fizz, buzz, value) in data:
    print fizz + buzz or value
link|flag
3  
perhaps "A python solution that uses neither division nor modulus:" would be nicer – ShuggyCoUk Jun 1 at 12:48
show 4 more comments
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 30 vote down

My Ook. is a bit rusty, and I don't have a compiler on hand to check it, but I believe this works:

### FizzBuzz in Ook.
Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. 
Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook?
Ook! Ook! Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook.
Ook. Ook.
Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook? Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook? Ook! Ook! Ook! Ook? Ook? Ook. Ook? Ook.
Ook. Ook. Ook. Ook? Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook? Ook? Ook. Ook! Ook? Ook! Ook!
Ook? Ook! Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook? Ook.
Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook?
Ook. Ook? Ook! Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook.

Ook? Ook. Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.

Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook!
Ook. Ook? Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook. Ook? Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook. Ook?
Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook? Ook. Ook. Ook! Ook. Ook! Ook.
Ook! Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook! Ook! Ook! Ook? Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook?
Ook. Ook? Ook. Ook? Ook! Ook! Ook? Ook!
Ook? Ook. Ook? Ook. Ook? Ook.
Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook? Ook? Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook!
Ook? Ook! Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook! Ook? Ook! Ook! Ook? Ook!
Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook! Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook. Ook? Ook.
Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook. Ook?
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook.
Ook! Ook! Ook? Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook.
Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook! Ook. Ook! Ook? Ook! Ook! Ook? Ook!
Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook?
Ook! Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook!
Ook? Ook! Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook!
Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook? Ook. Ook! Ook? Ook. Ook? Ook! Ook! Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook?
Ook. Ook. Ook? Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook?

Ook! Ook? Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook. Ook. Ook. Ook? Ook! Ook? Ook? Ook.
Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook?
Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook!
Ook! Ook! Ook! Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook? Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook!
Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook? Ook! Ook!
Ook? Ook! Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook!
Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook? Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook.
Ook. Ook. Ook? Ook! Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook? Ook.
Ook! Ook! Ook? Ook!
Ook. Ook? Ook. Ook? Ook! Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook?
Ook? Ook. Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook? Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook!
Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook! Ook. Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook.
Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook?
Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook! Ook? Ook!
link|flag
4  
"I don't have a compiler on hand to check it", Ha. – James McMahon Mar 18 at 20:56
9  
You should have commented on your block with this: "Beware of bugs in the above code; I have only proved it correct, not tried it" – prestomation Jun 18 at 23:42
show 1 more comment
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 Nov 27 at 21:12
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 21 vote down

Sorry. I couldn't resist.

IDENTIFICATION DIVISION.
PROGRAM-ID.  FIZZBUZZ.

DATA DIVISION.

WORKING-STORAGE SECTION.

01 WS-FIZZBUZZ-ITEMS.
   05 WS-FIZZBUZZ-ITERATION-COUNTER      PIC 9(003).
   05 WS-FIZZBUZZ-DIVISION.
      10 WS-FIZZBUZZ-QUOTIENT            PIC 9(003).
      10 WS-FIZZBUZZ-REMAINDER           PIC 9(003).
   05 WS-FIZZ-CHECKS.
      10 WS-FIZZ-CHECK                   PIC X(004)   VALUE SPACES.
         88 SW-FIZZ-IS-TRUE                           VALUE "FIZZ".
         88 SW-FIZZ-IS-NOT-TRUE                       VALUE SPACES.
      10 WS-BUZZ-CHECK                   PIC X(004)   VALUE SPACES.
         88 SW-BUZZ-IS-TRUE                           VALUE "BUZZ".
         88 SW-BUZZ-IS-NOT-TRUE                       VALUE SPACES.
      10 WS-NUMERIC-CHECK                PIC X(004)   VALUE SPACES.
         88 SW-NUMERIC-IS-TRUE                        VALUE "NUMERIC"
         88 SW-NUMERIC-IS-NOT-TRUE                    VALUE SPACES.
   05 WS-FIZZBUZZ-RECORD
      10 WS-FIZZBUZZ
         15 WS-FIZZ                      PIC X(004).
         15 WS-BUZZ                      PIC X(004).
      10 WS-NUMERIC                      PIC 9(004).



PROCEDURE DIVISION.
0100-PERFORM-FIZZBUZZ.
  PERFORM VARYING WS-FIZZBUZZ-ITERATION-COUNTER FROM 1 TO 100 BY 1
    PERFORM 0150-INITIALIZE-VARIABLES
    PERFORM 0160-INITIALIZE-SWITCHES
    PERFORM 0200-CHECK-NUMERIC-FOR-FIZZ
    PERFORM 0210-WRITE-FIZZ
    PERFORM 0300-CHECK-NUMERIC-FOR-BUZZ
    PERFORM 0310-WRITE-BUZZ
    PERFORM 0400-CHECK-NUMERIC-FOR-NUMERIC
    PERFORM 0410-WRITE-NUMERIC
    PERFORM 0500-DISPLAY-RECORD
    STOP RUN
.

0150-INITIALIZE-VARIABLES.
    MOVE ZEROES TO WS-FIZZBUZZ-ITERATION-COUNTER
    MOVE ZEROES TO WS-FIZZBUZZ-DIVISION
    MOVE SPACES TO WS-FIZZ
    MOVE SPACES TO WS-BUZZ
    MOVE ZEROES TO WS-NUMERIC
.

0160-INITIALIZE-SWITCHES.
    SET SW-FIZZ-IS-NOT-TRUE TO TRUE
    SET SW-BUZZ-IS-NOT-TRUE TO TRUE
    SET SW-NUMERIC-IS-NOT-TRUE TO TRUE
.


0200-CHECK-NUMERIC-FOR-FIZZ.
  DIVIDE WS-FIZZBUZZ-ITERATION-COUNTER BY 5 GIVING WS-FIZZ-QUOTIENT REMAINDER WS-FIZZ-REMAINDER.
  IF WS-FIZZ-REMAINDER IS EQUAL TO ZERO
    SET SW-FIZZ-IS-TRUE TO TRUE.
  END-IF
.

0210-WRITE-FIZZ.
    IF WS-FIZZ-CHECK = "FIZZ"
      MOVE "FIZZ" TO WS-FIZZ
    END-IF
.

0300-CHECK-NUMERIC-FOR-BUZZ.
  DIVIDE WS-FIZZBUZZ-ITERATION-COUNTER BY 10 GIVING WS-BUZZ-QUOTIENT REMAINDER WS-BUZZ-REMAINDER.
  IF WS-FIZZ-REMAINDER IS EQUAL TO ZERO
    SET SW-BUZZ-IS-TRUE TO TRUE.
  END-IF
.

0310-WRITE-BUZZ.
    IF WS-BUZZ-CHECK = "BUZZ"
      MOVE "BUZZ" TO WS-BUZZ
    END-IF
.

0400-CHECK-NUMERIC-FOR-NUMERIC.
  IF NOT WS-FIZZ IS EQUAL TO "FIZZ" AND NOT WS-BUZZ IS EQUAL TO "BUZZ"
     SET SW-NUMERIC-IS-TRUE TO TRUE.
  END-IF
.

0410-WRITE-NUMERIC.
    IF WS-NUMERIC-CHECK = "BUZZ"
      MOVE WS-FIZZBUZZ-ITERATION-COUNTER TO WS-NUMERIC
    END-IF
.


0500-DISPLAY-RECORD.
  IF WS-FIZZ IS EQUAL TO "FIZZ" AND WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-FIZZBUZZ BEFORE ADVANCING 1 LINE
  END-IF
  IF WS-FIZZ IS EQUAL TO "FIZZ" AND NOT WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-FIZZ BEFORE ADVANCING 1 LINE
  END-IF
  IF NOT WS-FIZZ IS EQUAL TO "FIZZ" AND WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-BUZZ BEFORE ADVANCING 1 LINE
  END-IF
  IF NOT WS-FIZZ IS EQUAL TO "FIZZ" AND NOT WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-NUMERIC BEFORE ADVANCING 1 LINE
  END-IF
.
link|flag
2  
Oh, the memory... and the pain... – Sklivvz Oct 15 '08 at 10:05
3  
Aargh... COBOL. I had nearly blocked out my brief, horrifying stint in this language. Thanks. ;) – Adam Lassek Oct 27 '08 at 17:45
6  
I'm afraid we are going to have to nuke this post from orbit to be safe! – Loren Pechtel Dec 31 '08 at 5:13
3  
Gah! Where's my silver cross and my garlic?!? – John Pirie Jun 24 at 13:38
show 3 more comments
vote up 19 vote down

Not as weird as some entries but here is a rather unusual python version:

a=range(101)
a[0:101:3]=['Fizz']*34
a[0:101:5]=['Buzz']*21
a[0:101:15]=['FizzBuzz']*7
for i in a[1:]: print i
link|flag
4  
Brilliant. Really, Brilliant. – DrFloyd5 Jan 12 at 17:17
show 1 more comment
vote up 16 vote down

All of you people who are checking to see if the number is divisible by three AND that it is divisible by five will find it more concise to consider whether the number is divisible by fifteen. This isn't rocket surgery. And brevity is the soul of wit.

link|flag
5  
All you people who are checking divisibility 3 times are doing it wrong to begin with. – Jimmy Oct 24 '08 at 18:52
4  
All you people who are checking divisibility at all are doing it wrong to begin with. – Nikolai Ruhe Jun 20 at 4:26
vote up 15 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
vote up 14 vote down

C# and LINQ? Why not...

Enumerable
  .Range(1, 100)
  .Select(i =>
    i % 15 == 0 ? "FizzBuzz" :
    i % 5 == 0 ? "Buzz" :
    i % 3 == 0 ? "Fizz" :
    i.ToString())
  .ToList()
  .ForEach(s => Console.WriteLine(s));
link|flag
4  
You can further reduce the number of symbols by replacing ForEach(s => Console.WriteLine(s)) with simple ForEach(Console.WriteLine). – Mindaugas Mozūras Mar 7 at 22:49
vote up 13 vote down

Here is my solution. It is written in 8051 assembly. You will need a 11.0592 MHz quart to run this thing :p

;*** CONSTANTS ***

; divider1
; the first divider's value
divider1 equ 3d

;divider2
; the second devider's value
divider2 equ 5d

; limit
; the maximum value that the fizzbizz program can reach. Must be between 0 and 100
limit equ 100d

;*** CODE ***

; Code segment at 0
cseg at 0
ljmp start ; avoir interrupt vectors
org 0x100 ; and go to a safer place
start: ; a.k.a here.
;
mov scon,#0x52 ; set UART to 8,0,n
mov tmod,#0x20 ; Timer1: autoreload
mov th1,#0xfe ; speed: 9600 bps
setb tr1 ; start Timer1

mov dptr,#intro ; load the intro and...
call emit ; beem it!

mov r7,#0 ; set counter to 0
compute:
cjne r7,#limit,continue ; are we finished with counting to 100?
jmp rest_in_peace ; Yes... rest in peace.
continue:
call do_crlf ; go to next line
mov r4,#1 ; set the (r7%3)? flag
inc r7 ; counter++
mov b,#divider1 ;
mov a,r7 ; divide the counter by three
div ab ;
mov a,b ; and get the reminder
jz do_fizz ; if it is null, do a fizz :)
next:
mov b,#divider2 ;
mov a,r7 ; divide the counter by five
div ab ;
mov a,b ; and get the reminder
jz do_buzz ; if it is null, do a buzz :D
mov a,r4 ; did we do a fizz?
jz compute ; if yes, reume the loop
call write_number ; else, write the number
jmp compute ; and resume the loop

rest_in_peace:
clr tr1 ; Stop Timer1
jmp $ ; AM STONED!

; do_fizz
; gets: nothing
; returns: 0 in r4
; description:
; Beems a "Fizz" through the UART
do_fizz:
mov dptr,#fizz ; load the fizz
call emit ; then display it
mov r4,#0 ; and leave a message: "I was here"
jmp next ; then resume your normal activity

; do_buzz
; gets: nothing
; returns: nothing
; description:
; Beems a "Bizz" through the UART
do_buzz:
mov dptr,#buzz ; load the buzz
call emit ; then display it
jmp compute ; then resume the loop

; do_crlf
; gets: nothing
; returns: nothing
; description:
; Beems the Carriage return/Line feed controle caracters through the UART.
do_crlf:
mov dptr,#crlf ; load crlf
call emit ; then send it
ret ; and return

; emit
; gets: the adress of the message to display in dptr
; returns: nothing
; description:
; Beems an ASCIIZ message, stored in the code memory, through the UART.
emit:
mov r6,#0 ; initialize the index to 0
bc_1:
mov a,r6 ;
inc r6 ; load the pointed byte
movc a,@a+dptr ;
jz fin ; if zero then return
jnb ti,$ ; if the last transmission isn't over, stay in your place
mov sbuf,a ; and transmit!
clr ti ; and clear ti to get further notifications :p
jmp bc_1 ; end of the loop
fin:
ret ; return

; emit_id
; gets: the digit's value in A (must be between 0 and 9)
; returns: nothing
; description:
; Translates a one-digit-bcd value located in A into Ascii and the beems it through the
; UART.
emit_id:
mov r5,a
mov a,#'0'
add a,r5
jnb ti,$
mov sbuf,a
clr ti
ret

; write_numer
; gets: the number to display in r7
; returns: nothing
; description:
; Beems the Ascii representation of the number located in r7 through the UART. r7 must
; be between 0 and 99
write_number:
mov a,r7 ;
mov b,#10d ; divide the number by 10
div ab ;
jz write_l ; if it si less than 10 then just write the modulo
call emit_id ; else, write the result (because r7<100) :)
write_l:
mov a,b ; prepare the parameters
call emit_id ; and send the digit
ret ; then return

; *** STATIC DATA ***

; fizz
; type: Asciiz string
; description:
; containes the fizz message
fizz: db "Fizz",0

; buzz
; type: Asciiz string
; description:
; containes the buzz message
buzz: db "Buzz",0

; intro
; type: Asciiz string
; description:
; contains the intro message.
; P.S:
; intro shares it's Asciiz 0 with crlf, 3 code bytes of economy :)
intro: db "The FizzBuzz test"

; crlf:
; type: Asciiz string
; description:
; containes the crlf byte couple
; P.S:
; shares itself and it's Asciiz 0 with intro
crlf: db 10,13,0

; Bye Bye :)
end
link|flag
2  
Some interesting things going on there with the syntax coloring. – James McMahon Mar 18 at 21:05
show 1 more comment
vote up 11 vote down

Anybody can write a oneliner FizzBuzz, but can you generalize it?

Here's a general FizzBuzz module in Haskell:

module FizzBuzz where
import Control.Applicative

cond True  x _ = x
cond False _ y = y

fizzBuzz xs ns = cond . null . f <*> show <*> f <$> ns
  where f n = maskInt n =<< xs
        maskInt n x = cond (n `mod` (fst x) == 0) (snd x) ""

Here's a sample run:

*FizzBuzz> fizzBuzz [(3, "Bucks"), (5, "Fizz"), (7, "Buzz")] [50 .. 150]

["Fizz","Bucks","52","53","Bucks","Fizz","Buzz","Bucks","58","59","BucksFizz","61",
"62","BucksBuzz","64","Fizz","Bucks","67","68","Bucks","FizzBuzz","71","Bucks","73",
"74","BucksFizz","76","Buzz","Bucks","79","Fizz","Bucks","82","83","BucksBuzz",
"Fizz","86","Bucks","88","89","BucksFizz","Buzz","92","Bucks","94","Fizz","Bucks",
"97","Buzz","Bucks","Fizz","101","Bucks","103","104","BucksFizzBuzz","106","107",
"Bucks","109","Fizz","Bucks","Buzz","113","Bucks","Fizz","116","Bucks","118","Buzz",
"BucksFizz","121","122","Bucks","124","Fizz","BucksBuzz","127","128","Bucks","Fizz",
"131","Bucks","Buzz","134","BucksFizz","136","137","Bucks","139","FizzBuzz","Bucks",
"142","143","Bucks","Fizz","146","BucksBuzz","148","149","BucksFizz"]
link|flag
1  
> but can you generalize it? Ah, a true Haskell programmer... – Andreas Magnusson Nov 5 '08 at 12:51
2  
No true programmer would write a DestroyBaghdad procedure... – Svante Jan 19 at 16:12
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 10 vote down

And now for something completely different, a solution in Befunge:

1> :3%#v_"zzif",,,,v
v < <
>:5%#v_"zzub",,,,v
v < <
>::3%\5%*!#v_:. v
v**455:,*48< <
>-#v_@
^ +1<

Give it a try on using this online interpreter.

Also, this isn't remotely optimized for space, but that's what the edit button's for. :)

link|flag
show 5 more comments
vote up 10 vote down

MSIL:

.assembly extern mscorlib {}
.assembly fizzbuzz {.ver 1:0:1:0}
.module fizzbuzz.exe
.method static void main() cil managed
{
.entrypoint
.maxstack 2
.locals init (
[0] int32 num,
[1] bool divisibleByThree,
[2] bool divisibleByFive)

//initialize counter
ldc.i4.1
stloc.0

br.s _checkEndCondition

_beginLoop:
//Check divisible by three
ldloc.0
ldc.i4.3
rem
ldc.i4.0
ceq
stloc.1

//Check divisible by five
ldloc.0
ldc.i4.5
rem
ldc.i4.0
ceq
stloc.2

//Check if not divisible by three or five
ldloc.1
brtrue.s _checkDivisibleByThree
ldloc.2
brtrue.s _checkDivisibleByThree

//Not divisible by three or five, write counter
ldloc.0
call void [mscorlib]System.Console::WriteLine(int32)
br.s _incrementCounter

_checkDivisibleByThree:
ldloc.1
brfalse.s _checkDivisibleByFive
ldstr "Fizz"
call void [mscorlib]System.Console::Write(string)

_checkDivisibleByFive:
ldloc.2
brfalse.s _newLine
ldstr "Buzz"
call void [mscorlib]System.Console::Write(string)

_newLine:
call void [mscorlib]System.Console::WriteLine()

_incrementCounter:
ldloc.0
ldc.i4.1
add
stloc.0

_checkEndCondition: ldloc.0
ldc.i4.s 0x65
blt.s _beginLoop
ret
}
link|flag
vote up 9 vote down

Here's the solution in Structured Hebrew (the algorithm language taught in schools in Israel). It's a valid language because I actually wrote a compiler for it once. The following code would actually compile (sans the line numbers, which would be replaced by tabs, which don't work well with right-to-left languages in a left-to-right direction):

1. הכרז על i: שלם
2. עבור i מ-1 עד 100, בצע:
2.1 אם i % 3 = 0 וגם i % 5 = 0 אזי,
2.1.1 הדפס "FizzBuzz"
2.2 אחרת, אם i % 3 = 0 אזי,
2.2.1 הדפס "Fizz"
2.3 אחרת, אם i % 5 = 0, אזי
2.3.1 הדפס "Buzz"
2.4 אחרת,
2.4.1 הדפס i

SO really needs right-to-left support for this kind of stuff :)

link|flag
10  
I scanned your line as "It's a valid language because I accidentally wrote a compiler for it once." That makes it funny! – Matthew Schinckel Jan 20 at 12:34
vote up 8 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 8 vote down

Obligatory Haskell version.

intToString i | i `mod` 3 && i `mod` 5 = "FizzBuzz"
              | i `mod` 3 = "Fizz"
              | i `mod` 5 = "Buzz"
              | otherwise = show i
main = mapM_ (putStrLn . intToString) [1..100]
link|flag
vote up 8 vote down

GWBASIC. And Of course, using GOTO statements was mandatory.

10 
20 FOR i=1 TO 100
30  IF (i MOD 3 = 0 )AND (i MOD 5 = 0) THEN GOTO 70
40  IF (i MOD 3 = 0 ) THEN GOTO 90
50  IF (i MOD 5 = 0 ) THEN GOTO 110
60  GOTO 120
70  PRINT "FizzBuzz"
80  GOTO 120
90  PRINT "Fizz"
100 GOTO 120
110 PRINT "Buzz"
120 NEXT i
link|flag
1  
Wrong! This doesn't print out the numbers 1, 2, 4, 7, 8...! You're gonna need to change your line numbers! (or maybe you can just use a couple of additional GOTOs instead) :) – m_oLogin Jun 10 at 14:35
vote up 7 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 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 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 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
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.