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

Use fizzbuzz-maker. You run it and it writes out a file called fizzbuzz.exe, which when run, shows the output required of the original poster.

Because the source code is zero bytes, it wins.

link|flag
vote up 1 vote down

D (Digital Mars):

#!/usr/bin/dmd -run
/**
 * to compile & run:
 * $ dmd -run fizzbuzz.d
 * to optimize:
 * $ dmd -O -inline -release fizzbuzz.d
 */
import std.stdio: writeln;
import std.string: toString;

void main() {
  for (int i = 1; i <= 100; i++)
    writeln(i % 15 == 0 ?  "FizzBuzz" : 
            i % 3 == 0 ? "Fizz" :
            i % 5 == 0 ? "Buzz" : toString(i));
}
link|flag
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 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 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 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 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

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 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

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

@lbrandy

This slightly longer version works with older versions of Perl, it is the same except it uses print with \n instead of "say" so you can easily test it.

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

You are right, when the index [$%3] is zero the expresstion (Fizz)[$%3] evaluates to the first (and only) element Fizz , when the index is any any other value the index is out of range and the expression evaluates to undef.

@Michiel de Mare

I know this is only half serious, but what is the point of monkeypatching a few functions in a golf match context? You could monkeypatch in the fizzbuzz function itself and just call

100.fb

or even

1.f

Three chars of ruby code (not counting the monkeypatch :-)

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

57 Chars in MUMPS:

F I=1:1:100 S A=I#3,B=I#5 W:A&B I W:'A "Fizz" W:'B "Buzz"

link|flag
vote up 1 vote down

In OCaml:

let fb (i:int) : string = match (i mod 3, i mod 5) with 
    (0,0)->"FizzBuzz"
  | (0,_)->"Fizz"
  | (_,0)->"Buzz"
  |   _  ->string_of_int i 
in let rec mklist (n:int):int list = 
  if n=0 then [] else n::(mklist (n-1))
in (for i=0 to 100 do print_endline (fb i) done;
    List.rev_map fb (mklist 100));;

The for loop prints everything out, but isn't purely functional, so I added mklist and the List.rev_map statement which evaluates to a list containing the correct output of the problem. If anyone knows a better way to do this functionally, please let me know.

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

Oracle SQL (precondition table with 1 - 100)

select decode(mod(id,3),0, decode(mod(id,5),0,'fizzbuzz','fizz'), decode(mod(id,5),0,'buzz,id)) from fizzbuzz
link|flag
show 1 more comment
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

T-SQL with no predefined tables. Maybe a little verbose!

DECLARE @n AS INT, @m AS INT;
SET @n=1; SET @m=100;
WITH ntom(n) AS(SELECT @n AS n UNION ALL SELECT n+1 FROM ntom WHERE n<@m),
fb AS (SELECT (n%3) AS mod3, (n%5) AS mod5, n FROM ntom)
SELECT CASE WHEN mod3 = 0 AND mod5 = 0 THEN 'FizzBuzz' 
		WHEN mod3 = 0 THEN 'Fizz' WHEN mod5 = 0 THEN 'Buzz' 
		ELSE CAST(n AS VARCHAR(10)) END AS fizzbuzz FROM fb;
link|flag
vote up 1 vote down

Here's an XSLT version. The file has a styelsheet reference to itself, so you can open it in IE and see the output:

fb.xml:

<?xml version="1.0"?>
<!-- Note: The stylesheet reference to the same file!-->
<?xml-stylesheet href="fb.xml" type="text/xsl" ?>
<xsl:stylesheet version="1.0" 
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:msxsl="urn:schemas-microsoft-com:xslt" >

  <xsl:output method="html"/>

  <xsl:template match="/">
    <!-- Start with 1-->
    <xsl:apply-templates select="msxsl:node-set( 1 )/text()"/>
  </xsl:template>

  <!-- Match all text nodes with values <= 100-->
  <xsl:template match="text()[ . &lt;= 100 ]">
    <xsl:apply-templates select="." mode="print"/>
    <br/>
    <!-- Recursion! -->
    <xsl:apply-templates select="msxsl:node-set( . + 1 )/text()"/>
  </xsl:template>

  <xsl:template match="text()" mode="print">
    <xsl:value-of select="."/>
  </xsl:template>

  <xsl:template match="text()[ . mod 3 = 0 ]" mode="print">
    Fizz
  </xsl:template>

  <xsl:template match="text()[ . mod 5 = 0 ]" mode="print">
    Buzz
  </xsl:template>
  <!-- Note: the most specific pattern matches first!-->
  <xsl:template match="text()[ . mod 3 = 0 ][ . mod 5 = 0 ]" mode="print">
    FizzBuzz
  </xsl:template>

  <!-- No output for the default node() match-->
  <xsl:template match="node()"/>
</xsl:stylesheet>

EDIT: No need for two files (.xml and .xslt).

link|flag
vote up 1 vote down

In UniBasic:

FOR XX = 1 TO 100
  MULT.OF.THREE = NOT(MOD(XX,3))
  MULT.OF.FIVE = NOT(MOD(XX,5))
  BEGIN CASE
    CASE MULT.OF.THREE AND MULT.OF.FIVE
      PRINT "FizzBuzz"
    CASE MULT.OF.FIVE
      PRINT "Buzz"
    CASE MULT.OF.THREE
      PRINT "Fizz"
    CASE 1
      PRINT XX
  END CASE
NEXT XX
link|flag
vote up 1 vote down

Here is an XSLT version.

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2005/xpath-functions">
    <xsl:output method="text" version="1.0" encoding="UTF-8" indent="no" />
    <xsl:template match="/">
    	<xsl:for-each select="1 to 100">
    	<xsl:choose>
    		<xsl:when test="position() mod 3=0">
    			fizz
    			<xsl:if test="position() mod 5=0">
    				buzz
    			</xsl:if>
    		</xsl:when>
    		<xsl:when test="position() mod 5=0">
    			buzz
    		</xsl:when>
    		<xsl:otherwise>
    			<xsl:value-of select="position()"/>
    		</xsl:otherwise>
    	</xsl:choose>
    	</xsl:for-each>
    </xsl:template>
</xsl:stylesheet>

Or much smaller in a function:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
   <xsl:output  method="text"/>
   <xsl:template  match="/">
      <xsl:value-of  select="for $n in (1 to 100) return if ($n mod 3 = 0) then if($n mod 5=0) then 'fizzbuzz ' else 'fizz' else if($n mod 5=0) then 'buzz' else $n"/>
   </xsl:template>
</xsl:stylesheet>
link|flag
vote up 1 vote down

The shortest I could do with php (70 characters):

<?php while($i++<100)echo($i%15?$i%3?$i%5?$i:Buzz:Fizz:FizzBuzz)."\n";
link|flag
vote up 1 vote down

Oracle SQL

select decode(mod(level,3),0, decode(mod(level,5),0,'fizzbuzz','fizz'),
       decode(mod(level,5),0,'buzz',level))
from dual
connect by level <= 100
/
link|flag
vote up 1 vote down

In Scheme:

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

Erlang

-module(fizzbuzz).
-export([start/0]).

start() ->
    fizzbuzz(1).

fizzbuzz(100) ->
    true;
fizzbuzz(X) when (X rem 5 == 0), (X rem 3 == 0) ->
    io:format("FizzBuzz~n", []),
    fizzbuzz(X+1);
fizzbuzz(X) when X rem 3 == 0 ->
    io:format("Fizz~n", []),
    fizzbuzz(X+1);
fizzbuzz(X) when X rem 5 == 0 ->
    io:format("Buzz~n", []),
    fizzbuzz(X+1);
fizzbuzz(X) ->
    io:format("~p~n", [X]),
    fizzbuzz(X+1).
link|flag
vote up 1 vote down

Not really amazing that the switch version is the fastest...

    // 2,6 microseconds
    private static void FizzBuzz2()
    {
        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);
        }
    }

    // 1,6 microseconds
    private static void FizzBuzz3()
    {
        for (int i = 0; i <= 100; i++)
        {
            switch ((i % 3 == 0 ? 0 : 1) + (i % 5 == 0 ? 0 : 2))
            {
                case 0: ;/*Console.WriteLine("FizzBuzz");*/ break;
                case 1: ;/*Console.WriteLine("Fizz");*/ break;
                case 2: ;/*Console.WriteLine("Buzz");*/ break;
                case 3: ;/*Console.WriteLine(i);*/ break;
            }
        }
    }

    // 2,1 microseconds
    private static void FizzBuzz4()
    {
        int i;
        for (i = 1; i <= 100; i++)
        {
            switch (i % 15)
            {
                case 0: ;/* Console.WriteLine("FizzBuzz");*/ break;
                case 3:
                case 6:
                case 9:
                case 12: ;/*Console.WriteLine("Fizz");*/ break;
                case 5:
                case 10: ;/*Console.WriteLine("Buzz");*/ break;
                default: ;/*Console.WriteLine(i);*/ break;
            }
        }
    }

    // 11 microseconds
    private static void FizzBuzz1()
    {
        bool b;
        string s;
        for (int i = 1; i <= 100; i++)
        {
            b = false;
            if (i % 3 == 0)
            {
                ;// Console.Write("Fizz");
                b = true;
            }
            if (i % 5 == 0)
            {
                ;// Console.Write("Buzz");
                b = true;
            }
            s = b ? string.Empty : i.ToString();
            ;//Console.WriteLine(s);
        }
    }
link|flag
vote up 1 vote down

Too bad I don't have any C compiler installed at the moment. I'm sure I'd mention that if I wanted a bit of easy performance but slightly harder to read, I'd change my if ... == 0 to if !(...). That said, here's my best shot w/o a compiler to test it handy:

#include "stdio.h"

main()
{
    char x = 1;
    char cheat = 0;

    do
    {
    	cheat = 0;

    	if x % 3 == 0 
 	{
    		cheat++;
    		printf("Fizz");
 	}

    	if x % 5 == 0 
 	{
    		cheat++;
    		printf("Buzz");
    	}

    	if cheat == 0 
    		printf("%i", x);

 	printf("\n");

    	x++;
    } while x < 100;
}
link|flag
show 1 more comment
vote up 1 vote down

This is my version in IA-32 assembly. NASM syntax. Linux only.

(NB: This version is deliberately jump-avoidant. For a more jumpy version, see my next version.)

Edit: Using similar techniques as mentioned in my other version, I've shaved off 21 bytes from the object code, bringing the size to 114 bytes!

global  _start

section .text
_start  sub     eax, 104
        sub     ebx, 99
        lea     esp, [esp + 4*eax]
        mov     edi, esp
        push    dword 0x7a7a7542        ; Buzz
        push    dword 0x7a7a6946        ; Fizz
        mov     edx, esp

.loop   lea     ecx, [ebx + 100]
        mov     eax, ecx
        aam     3
        mov     eax, ecx
        setz    ch
        aam     5
        setz    cl
        jecxz   .num
        and     cl, ch
        xor     ch, 1
        inc     cl
        movzx   esi, ch
        movzx   ecx, cl
        lea     esi, [edx + 4*esi]
        rep movsd
        jmp     .nl

.num    lea     eax, [ebx + 100]
        aam
        xchg    al, ah
        test    al, al
        setz    cl
        add     ax, 0x3030
        push    eax
        lea     esi, [edx + ecx - 4]
        xor     cl, 1
        inc     ecx
        rep movsb
        pop     eax

.nl     mov     al, 10
        stosb
        inc     ebx
        jle     .loop
        lea     eax, [ebx + 3]
        sub     edi, edx
        lea     ecx, [edx + 8]
        lea     edx, [edi - 8]
        int     0x80
        mov     eax, ebx
        dec     ebx
        int     0x80

To build, use:

nasm -Ox -f elf fizzbuzz.asm
ld -s -m elf_i386 fizzbuzz.o
link|flag

Your Answer

Get an OpenID
or

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