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

vote up 1 vote down

I'm not very good at golf. Here's 74 characters in Python:

for n in range(1,101):print(""if n%3 else"Fizz")+(""if n%5 else"Buzz")or n
link|flag
vote up 2 vote down

C++

for(int k=1;k<=100;k++){
  if(!(k%3))
    cout << "Fizz";
  if(!(k%5))
    cout << "Buzz";
  if((k%3)&&(k%5))
    cout << endl << k;
}
link|flag
vote up 2 vote down

Here is another C version which avoids divisions and remainders


#include "stdio.h"
int main(int argc, char **argv) {
    int i,m15,m3;
    for (i=1;i<101;i++) {
        m15=i;
        m15=(m15 & 15)+(m15>>4);
        m15=(m15 & 15)+(m15>>4);
        if (m15==15) printf("FizzBuzz\n");
        else if (m15==10 || m15==5) printf("Buzz\n");
        else {
            m3=m15;
            m3=(m3 & 3)+(m3>>2);
            m3=(m3 & 3)+(m3>>2);
            if (m3==3) printf("Fizz\n");
            else printf("%d\n",i);
        }
    }
    return 0;
}

It actually works by using the equivalent of 9's remainders in hex (15's remainder?) by adding up the hex digits (theres only 2 digits for numbers under 100). I use that for the divisible by 5 (Buzz) and divisible by 15 (FizzBuzz). I then get the base 4 digit sum to find divisibilty by 3 (Fizz).

link|flag
vote up 105 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 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
11  
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 1 vote down

The obligatory lisp answer:

(loop for x from 1 to 100 do
    (format t "~a~%"
        (let ((a (cons (= 0 (rem x 3)) (= 0 (rem x 5)))))
            (cond
                ((or (car a) (cdr a))
                    (format nil "~a~a"
                        (if (car a) "Foo" "")
                        (if (cdr a) "Bar" "")))
                (T x)))))
link|flag
vote up 0 vote down

Using the new Proc#=== in Ruby 1.9:

def divisible_by(factor)
  lambda {|product| product.modulo( factor ).zero? }
end

1.upto 100 do |number|
  puts case number
         when divisible_by 15: "FizzBuzz"
         when divisible_by 3: "Fizz"
         when divisible_by 5: "Buzz"
         else: number
       end
end
link|flag
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 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 2 vote down

Fortran. It has been compiled and run under GNU Fortran, but should work on Fortran 77.


*-------------------------------------------------------------------------------
       PROGRAM FIZZBUZZ
*
       DO 10 I=1,100
          A = MOD(I,3)
          B = MOD(I,5)
          IF (A.EQ.0.AND.B.EQ.0) THEN
             PRINT*, 'fizzbuzz'
          ELSEIF (A.EQ.0) THEN
             PRINT*, 'fizz'
          ELSEIF (B.EQ.0) THEN
             PRINT*, 'buzz'
          ELSE
             PRINT*, I
          ENDIF
   10  END DO
       END
link|flag
vote up 2 vote down

Here it is in 6502 code (BBC Basic Assembler):

   10 REM FizzBuzz in 6502 assembler
   20 DIM code% 1000
   30 OSWRCH = &FFEE
   40 OSNEWL = &FFE7
   50 work = &70
   60 DIM FizzM 4 : $FizzM = "zziF"
   70 DIM BuzzM 4 : $BuzzM = "zzuB"
   80 FOR pass% = 0 TO 3 STEP 3
   90 P%=code%
  100 [opt pass%
  110
  120 .FizzBuzz  LDA #1
  130            LDX #3
  140            LDY #5
  150 .FB1       SEC
  160            DEX
  170            BNE FB2
  180            JSR Fizz
  190            LDX #3
  200 .FB2       DEY
  210            BNE FB3
  220            JSR Buzz
  230            LDY #5
  240 .FB3       BCC FB4
  250            JSR PrDecimal
  260 .FB4       PHA
  270            JSR OSNEWL
  280            PLA
  290            CLC
  300            ADC #1
  310            CMP #101
  320            BCC FB1
  330            RTS
  340
  350 .Fizz      PHA
  360            LDX #3
  370 .Fizz1     LDA FizzM, X
  380            JSR OSWRCH
  390            DEX
  400            BPL Fizz1
  410            CLC
  420            PLA
  430            RTS
  440
  450 .Buzz      PHA
  460            LDY #3
  470 .Buzz1     LDA BuzzM, Y
  480            JSR OSWRCH
  490            DEY
  500            BPL Buzz1
  510            CLC
  520            PLA
  530            RTS
  540
  550 .PrDecimal STA work
  560            PHA
  570            TXA
  580            PHA
  590            LDA #0
  600            PHA
  610 .PrDec0    LDX #8
  620            LDA #0
  630 .PrDec1    ASL work
  640            ROL A
  650            CMP #10
  660            BCC PrDec2
  670            SBC #10
  680            INC work
  690 .PrDec2    DEX
  700            BNE PrDec1
  710            CLC
  720            ADC #ASC"0"
  730            PHA
  740            LDX work
  750            BNE PrDec0
  760 .PrDec3    PLA
  770            BEQ PrDec4
  780            JSR OSWRCH
  790            JMP PrDec3
  800 .PrDec4    PLA
  810            TAX
  820            PLA
  830            RTS
  840 ]
  850 NEXT
link|flag
vote up 1 vote down

There are many ways to write this in Perl 6. This isn't the smallest, but it does show an interesting feature of the language. It can now run in Rakudo Perl 6 right now:

multi sub p(Int $x where {!($^n%3 || $^n%5)}) { "FizzBuzz" };
multi sub p(Int $x where {!($^n%3) && $^n%5}) { "Fizz" };
multi sub p(Int $x where {!($^n%5) && $^n%3}) { "Buzz" };
multi sub p(Int $x) { return $x; };

for (1..100) -> $x { say p($x) }
link|flag
vote up 1 vote down

Reply to this post here is my generalized version:

(defmacro deffoobar (name start end &rest lists)
    "Usage: (deffoobar foo 0 200 '(3 . \"Foo\") '(5 . \"Bar\") '(8 . \"Nak\"))"
    (let     ((x      (intern (format nil "~a" (gensym))))
              (i      (intern (format nil "~a" (gensym))))
              (retnum (intern (format nil "~a" (gensym))))
              (retval (intern (format nil "~a" (gensym))))
              (istart (if (> start end) end start))
              (iend   (if (> start end) start end)))
        `(defun ,name () ;` //the syntax highlighter is dodgy
            (loop for ,x from ,istart to ,iend do
                (format t "~a~%"
                    (let    ((,retnum T)
                             (,retval ""))
                        (loop for ,i in (list ,@lists) do
                            (if (zerop (rem ,x (car ,i)))
                                (progn
                                    (setf ,retnum nil)
                                    (setf ,retval (format nil "~a~a" ,retval (cdr ,i))))))
                        (if ,retnum ,x ,retval)))))))
link|flag
show 1 more comment
vote up 2 vote down

Here's a smaller befunge version. 14x7. I would edit Patrick's, but I don't have enough reputation.

1>::3%:   #v_v
v,,:,,"fiz">#<
>\5%:     #v_v
v,,:,,"buz">#<
>\*!    #v_:.v
  v5:,*25<   <
 v>54**-!#@_1+
link|flag
vote up 0 vote down

Yet another C version (77 chars). People at anarchy golf have managed to bring it down to 73, but as a newbie golfer I can't find any more corners to cut. Ideas?

main(i){while(i<101)printf(i%3?i%5?"%d":"":"Fizz",i)|puts(i++%5?"":"Buzz");}
link|flag
vote up 1 vote down

It's the second batch file version, but it's a little more in the spirit of things:

@echo off
set i=1
:start

call :test %i%
set /a i=%i%+1
if %i%==101 goto :eof
goto :start

:test
set /a modVal3=%1%%3
set /a modVal5=%1%%5

if %modVal3%%modVal5%==00 (
    echo FizzBuzz
) else if %modVal3%==0 (
    echo Fizz
) else if %modVal5%==0 (
    echo Buzz
) else (
    echo %1%
)
link|flag
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 0 vote down

Here's one I did a while ago in Haskell (generalized & should run very quick -- no arithmetic is performed after the initial setup):

gizzabuzz pairs combiner = zipWith ($) (cycle funcs) [1..]
    where 
    funcs = map (\n -> display $ mapMaybe (filterOut n) sortedPairs) [1..foldr1 lcm $ map fst $ sortedPairs]
    display [] = show
    display xs = foldr1 combiner . sequence (map const xs)
    sortedPairs = sortBy (compare `on` fst) pairs
    filterOut n (x,y)
	    | n `mod` x == 0 = Just y
	    | otherwise      = Nothing

fizzbuzz = gizzabuzz [(3,"Fizz"),(5,"Buzz")] (++)
link|flag
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 1 vote down

Omg. It seems a challenge :P Readable version, in python :-)

for n in xrange(1,101):
    s = ''
    if n%3 == 0: s += 'Fizz'
    if n%5 == 0: s += 'Buzz'
    if s == '': s = n
    print s
link|flag
vote up 1 vote down

WebMethods Flow.

To be fair, WM lets you write services in Java, but I challenged myself to do FizzBuzz in their Flow doodleware, and to only use the available built-in services.

FizzBuzz in WebMethods Flow

I couldn't find a built in modulus operator, so rather than dividing, multiplying then comparing with the original, I used three counters.

"Unfortunately" you can't see all of the logic - you'd have to click around the UI to see where everything is hidden.

link|flag
vote up 1 vote down
\ FizzBuzz                                     15:18 07Aug08 ...

 : FIZZORBUZZ? ( n --- f     flag says if a F. or B. happened)
                                                      ( n -- )
    FALSE                 \ default=no             ( n F --- )
    OVER                  \ copy arg             ( n F n --- )
    3 /MOD DROP 0 = IF    \ divisible by 3 ?    ( n F f' --- )
      ." Fizz"
      DROP TRUE THEN                                ( n T -- )
    OVER 5 /MOD DROP 0 = IF     \ div by 5?      ( n f f' ---)
      ." Buzz"
      DROP TRUE THEN                               ( n f --- )
    SWAP DROP                                        ( --- f )
 ;

 : FB  120  0 DO
       SPACE
       I FIZZORBUZZ? 0= IF I . THEN
       LOOP
 ;

FB

Am I the last of my kind?

Sorry to confess:
- I never heard of FizzBuzz until Joel told me about it.
- Aftewards, actually went and did this.
- It's FORTH.


It occurred to me to show this again, but in its more renowned "compressed-write-only-no-comments-no-factoring" version.

: FB 120 0 DO SPACE I   FALSE OVER 3 /MOD DROP 0 = IF ." Fizz" DROP TRUE THEN 
 OVER 5 /MOD DROP 0 = IF ." Buzz" DROP TRUE THEN SWAP DROP 0= IF I . THEN LOOP
; FB
link|flag
vote up 1 vote down

Here's another batch file version (requires Windows 2000 or later).

@echo off
setlocal
call :f 1 %%%%i
call :f 3 Fizz
call :f 5 Buzz
call :f 15 FizzBuzz
for /l %%i in (1,1,100) do call echo %%f%%i%%
endlocal
goto :eof
:f
for /l %%i in (%1,%1,100) do set f%%i=%2
goto :eof

I'm truly sorry.

link|flag
vote up 1 vote down

PHP with switch.

I always thought that this switch evaluation rocks, but probably it's just me hating the if's and loving the switch

<?php
foreach(range(0,99) as $number) {
    switch(0) {
        case $number % 15:
            echo "fizzbuzz";
            break;
        case $number % 5:
            echo "fizz";
            break;
        case $number % 3:
            echo "buzz";
            break;
        default:
            echo $number;
            break;
    }
    echo "\n";
}
?>
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 1 vote down

Ok, here's a recursive solution based on my JavaScript solution. Just another variant...

var output = fizzBuzz(1, 100);
function fizzBuzz(i, max){
    var fizz = (i % 3 == 0);
    var buzz = (i % 5 == 0);
    var tmpOutput = "";

    if(!fizz && !buzz){
    	tmpOutput = i;
    }else{
    	if(fizz){
    		tmpOutput = "Fizz";
    	}

    	if(buzz){
    		tmpOutput += "Buzz";
    	}
    }

    tmpOutput += "<br />";

    if(i < max){
    	i++;
    	tmpOutput += fizzBuzz(i, max);
    }

    return tmpOutput;
}

document.write(output);
link|flag
vote up 1 vote down

In REBOL:

ifmod: func [a n] [either (mod a n) = 0 [n] [0]]
for a 1 100 1 [
    print switch (ifmod a 5) + (ifmod a 3) [
        8 ["FizzBuzz"]
        5 ["Buzz"]
        3 ["Fizz"]
        0 [a]
    ]
]
link|flag
vote up 1 vote down

A bit of unrolling and math (Pseudocode):

for i = 1..100
  switch i % 15
    case 0: 
      print FizzBuzz
      break
    case 3:
    case 6:
    case 9:
    case 12:
      print Fizz
      break
    case 5:
    case 10:
      print Buzz
      break
    default:
      print i
      break
link|flag
vote up 2 vote down

C++:

for (int i=1;i<=100;++i)
    printf((((i%3)&&(i%5))==0)?"%s%s\n":"%s%s%d\n",((i%3)==0)?"Fizz":"",((i%5)==0)?"Buzz":"",i);

C++ Second Example:

for (int i=0;i<100;printf("%s%s%d\n\0%s%s\n"+!(i%3&&i%5)*8,!(i%3)?"Fizz":"",!(i%5)?"Buzz":"",i,i++));

Modula-2:

MODULE FizzBuzz;

  FORM InOut IMPORT
    WriteLine, WriteInt;

  VAR
    i,m15,m5,m3 : INTEGER;

BEGIN
  FOR i := 1 to 100 DO
    m15 := i MOD 15;
    m5 := i MOD 5;
    m3 := i MOD 3;
    IF m15 = 0 THEN
      WriteLine ( 'FizzBuzz' );
    ELSEIF m5 = 0 THEN
      WriteLine ( 'Buzz' );
    ELSEIF m3 = 0 THEN
      WriteLine ( 'Fizz' );
    ELSE
      WriteInt( i ); WriteLine
    END
  END 
END FizzBuzz.

ADA:

with TEXT_IO;
package int_io is new TEXT_IO.INTEGER_IO( INTEGER);
with TEXT_IO,int_io; use TEXT_IO,int_io;

procudure fizzbuzz is

i,m15,m5,m3 : INTEGER;

begin
 for i in INTEGER range 1 .. 100 loop
   m15 := i mod 15;
   m5 := i mod 5;
   m3 := i mod 3;
   if m15 = 0 then
     PUT ( "FizzBuzz" ); NEW_LINE;
   elseif m5 = 0 then
     PUT ( "Buzz" ); NEW_LINE;
   elseif m3 = 0 then
     PUT ( "Fizz" ); NEW_LINE;
   else
     PUT ( i ); NEW_LINE;
   end if;
 end loop;
end fizzbuzz;

WinBatch (yeah, I know... but I couldn't pass it up):

@echo off
set _i=1
:loop
set /a _return=%_i% %% 15
if /i "%_return%" EQU "0" (
  echo FizzBuzz
  goto :doloop)

set /a _return=%_i% %% 5
if /i "%_return%" EQU "0" (
  echo Buzz
  goto :doloop)

set /a _return=%_i% %% 3
if /i "%_return%" EQU "0" (
  echo Fizz
  goto :doloop)

echo %_i%

:doloop
set _return=
set /a _i += 1
if /i "%_i%" EQU "101" goto :eof
goto :loop

:eof

I have too much time on my hands :D

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

Your Answer

Get an OpenID
or

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