vote up 66 vote down star
45

See here

Write a program that prints the numbers from 1 to 100. But for multiples of three print "Fizz" instead of the number and for the multiples of five print "Buzz". For numbers which are multiples of both three and five print "FizzBuzz".

Disclaimer: I do realize this is easy, and I understand the content of the Coding Horror post I just linked to

flag
show 1 more comment

162 Answers

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

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

    print TheAnswerToFizzBuzz

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

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

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

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

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

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

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

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

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

Here is Fizz Buzz in Chrome

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

Here is my version in C#

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

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

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

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

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

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

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

Built using DevStudio 2005.

Skizz

link|flag
vote up 1 vote down

My version with QBASIC:

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

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

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

:: Johnny enters ::

"Yes?"

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

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

"FizzBuzz implementation is empty"

and assign it to Johnny.

link|flag
vote up 1 vote down

PHP 1 liner

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

Classic VB, 85 chars without white space:

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

Yeah, pretty lame.

link|flag
vote up 1 vote down

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

Works, but could probably stand more obfuscation.

link|flag
vote up 1 vote down

ok, my 0.02$

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

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

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

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

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

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

Your Answer

Get an OpenID
or

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