vote up 66 vote down star
44

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

t-sql

select  case when rn % 3 = 0 then 'Fizz' else '' end
    + case when rn % 5 = 0 then 'Buzz' else '' end
    + case when rn % 3 > 0 and rn % 5 > 0 then cast(rn as nvarchar) else '' end
from
(
    select top 100 row_number() over (order by name) rn
    from spt_values
) a

edit- I actually had to write this out on Friday at an interview. Didn't use SQL though. For loops are burned into my head better I guess.

link|flag
vote up 2 vote down

A C version, that does not use division or modulus:

#include 

#define FIZZ 3
#define BUZZ 5
#define MAX 100

int main(int argc, char *argv[])
{
    int i, fizz, buzz;

    fizz = buzz = 1;
    for( i = 1; i 0  && buzz > 0) 
        {
           printf("%d\n",i);
        } 
        else
        {
            if ( fizz == 0)
               printf("Fizz");
            if ( buzz == 0)
               printf("Buzz");

            printf( "\n");
        }

        if (++fizz >= FIZZ) fizz = 0;
        if (++buzz >= BUZZ) buzz = 0;
    }
    return 0;
}
link|flag
vote up 2 vote down

Tcl: (assumes $limit is the upper bound you want to count to)

for {set i 0} {$i < $limit} {incr i} {  
    set str ""  
    if {$i % 3 == 0} {  
        append str "FIZZ"  
    }  
    if {$i % 5 == 0} {  
        append str "BUZZ"  
    }  
    if {$str == ""} {  
        append str $i  
    }  
    puts $i  
}
link|flag
vote up 2 vote down

SQL Server

DECLARE @LoopInt INT
SET @LoopInt =1
WHILE @LoopInt <= 100 BEGIN

PRINT ISNULL(NULLIF(CASE WHEN @LoopInt % 3 = 0 THEN 'Fizz' ELSE '' END
+ CASE WHEN @LoopInt % 5 = 0 THEN 'Buzz' ELSE '' END, ''), @LoopInt)


SET @LoopInt= @LoopInt + 1
END
link|flag
vote up 2 vote down

An F# solution is as follows:-

Edit: Modified to compile under F# 1.9.6.0 latest CTP.

#light

let inline (/%) x y = x % y = 0
let fb = function
    | x when x /% 15 -> "FizzBuzz"
    | x when x /% 3  -> "Fizz"
    | x when x /% 5  -> "Buzz"
    | x              -> x.ToString()

[1..100] |> List.map (fb >> printfn "%s")

For some reason the context highlighter seems to go crazy with this one so I used pre tags instead!

link|flag
vote up 2 vote down

In Delphi (complete command-line program):

program fizzbuzz;

{$APPTYPE CONSOLE}

uses
  SysUtils;

var
  i : integer;

const
  c_Start = 1;
  c_End = 100;
  c_Fizz = 3;
  c_Buzz = 5;
  c_FizzWord = 'Fizz';
  c_BuzzWord = 'Buzz';

begin
  for i := c_Start to c_End do begin
    if 0=(i mod c_Fizz) then
      Write(c_FizzWord);
    if 0=(i mod c_Buzz) then
      Write(c_BuzzWord);
    if (0 < (i mod c_Buzz)) and (0 < (i mod c_Fizz)) then
      Write(IntToStr(i));
    WriteLn('');
  end;  //for
end.
link|flag
vote up 2 vote down

I can think of no reason why you want to, but here's a recursive solution in java:

package j;

public class fizzbuzz {

    public static void main(String[] args){
    	System.out.println(fizzBuzz(100));
    }

    private static String fizzBuzz(int i) {
    	String val = null;
    	if(i==0){
    		return"";
    	}
    	else{
    		val=fizzBuzz(i-1);
    	}

    	if(i%15==0){
    		return val + " FIZZBUZZ";
    	}else if(i%3==0){
    		return val+" FIZZ";
    	}else if(i%5==0){
    		return val+" BUZZ";
    	}
    	else{
    		return val+" " +String.valueOf(i);
    	}
    }
}

Also, if I do fizzBuzz(5702) I get a java.lang.StackOverflowError. :-)

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

This answer isn't perfect in any one dimension, but I like:

  • the fact that it has a very low cyclomatic complexity
  • that it is pretty readable
  • that it handles the most specific case first and the least specific case last.
  • that it explicitly handles the "FizzBuzz" case rather than implying it as an overlap of the Fizz and Buzz cases

I'd love some criticism on this!

for each integer currentNum from 1 to 100 do
     if currentNum modulo 15 is 0 then
        print 'FizzBuzz'
     else if currentNum modulo 5 is 0 then 
        print 'Buzz'
     else if currentNum modulo 3 is 0 then
        print 'Fizz'
     else
        print currentNum
     endif
endfor
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 2 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 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 2 vote down

In R:

v <- 1 : 100
fizz <- v %% 3 == 0
buzz <- v %% 5 == 0
rest <- !( fizz | buzz )
s <- paste( ifelse( rest, v, "" ), 
            ifelse( fizz, "Fizz", "" ), 
            ifelse( buzz, "Buzz", "" ), 
            sep="" )
cat( s, sep = '\n' )
link|flag
vote up 2 vote down

A short, efficient and easier to read Ruby version.

#!/usr/bin/env ruby

 1.upto(100) do |i| 
     print "Fizz" if (i % 3).zero? and (divisible = true)
     print "Buzz" if (i % 5).zero? and (divisible = true)
     print i if not divisible
     print "\n"
 end

(divisible = true) is actually an assignment which always returns 'True'. Due to the boolean logic of 'AND', interpreter always evaluates this expression if mod result is 0 (zero), thus resulting an assignment. If mod operation result is non-zero, this expression is never evaluated due to the "boolean shortcut" optimization.

link|flag
vote up 2 vote down

Obfuscated ColdFusion Script Just for the fun of it. Shoot me or any of my developers if we ever did this.

function d(n){return chr(inputbasen(n,16));}function f(){writeoutput(d('66')&d('69')&d('7a')&d('7a'));}function b(){writeoutput(d('62')&d('75')&d('7a')&d('7a'));}function r(){writeoutput(d('3c')&d('62')&d('72')&d('3e'));}function m(v){h=v mod 3;n=v mod 9;t=v;if(h AND n){writeoutput(v);r();return;}if(not h)f();if(not n)b();r();}for(x=1;x lte 100;x++){m(x);}

Oh, forgot to say I give this test to all my programmer and DBA applicants. and our requirement is mod 3 and mod 9, with a web output. Thus the output of <br> tags. For you CF haters, yes, it's do-able in much smaller code. :P

link|flag
vote up 2 vote down

Factor version. Can probably be made cleaner, clearer and shorter, but I'm still a Factor n00b, so...

! Check is a number is divisible by another number
: divisible ( n m -- ? ) mod 0 = ;

! Output a string only if a number is divisible by another and keep the boolean result
: write-if-divisible ( string n m -- ? )
    divisible? dup -rot                            ! Is 'n' divisible by 'm'?
    [ write ] [ drop ] if ;                        ! If yes print string, otheriwse drop it

! Fizzbuzz procedure
: fizzbuzz ( -- )
    100 [                                          ! 100 iterations
        1 + dup                                    ! Start at 1 and keep two copies
        [ 3 "Fizz" -rot write-if-divisible ]       ! Write "Fizz" if divisible by 3
        [ 5 "Buzz" -rot write-if-divisible ] bi or ! Write "Buzz" if divisible by 5
        [ "" print drop ] [ . ] if                 ! If divisible by either number print newline otherwise print number
    ] each ;

Maybe someone can improve this for me?

link|flag
vote up 2 vote down

This is a much more jump-happy version of my last submission. On the upside, the object code size is reduced by 14 bytes, mostly by using lea (3 bytes) instead of constant register moves (5 bytes). (e.g., mov edx, 5 gets translated into lea edx, [ebx + 4], with the understanding that ebx is always fixed at 1.)

Edit: Since posting this initially, I've shaved off another 13 bytes, resulting in 108 bytes of object code, by exploiting that most registers start at 0, edx's top bits are never set, and [edi] < [ebp] < [esp + 4] in code size.

Edit2: By buffering all output into the stack before writing, I've shaved off another 8 bytes, resulting in 100 bytes of object code. (Bonus: apart from the Fizz/Buzz pushing, all instructions are 3 bytes or less.) I can cut another 3 bytes by buffering to .bss instead of the stack, but using additional sections adds bulk to the executable elsewhere, resulting in a net disadvantage.

global  _start

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

.loop   lea     ecx, [ebx + 100]
        mov     eax, ecx
        aam     15
        jz      .fiftn
        mov     eax, ecx
        aam     5
        jz      .five
        mov     eax, ecx
        aam     3
        jz      .three
        mov     eax, ecx
        aam
        add     al, 0x30
        test    ah, ah
        jz      .onedig
        xchg    ah, al
        add     al, 0x30
        stosb
        xchg    ah, al

.onedig stosb
        jmp     .nl

.three  mov     eax, [esi]
        stosd
        jmp     .nl

.fiftn  mov     eax, [esi]
        stosd

.five   mov     eax, [esi + 4]
        stosd
        jmp     .nl

.nl     mov     al, 10
        stosb
        inc     ebx
        jle     .loop
        pop     ecx
        mov     edx, edi
        sub     edx, ecx
        lea     eax, [ebx + 3]
        int     0x80
        mov     eax, ebx
        dec     ebx
        int     0x80
link|flag
vote up 1 vote down

Glad to post the first response in C ;)

int main(int argc, _TCHAR* argv[])
{
for(int i = 0; i < 100 ; i++)
{
if(i%3)
{
if(i%5)
{
printf("FizzBuzz");
}
else
{
printf("Fizz");
}
}
else if(i%5)
{
printf("Buzz");
}
}
return 0;
}
link|flag
1  
You forgot to printf("%d", i) in case it's not divisible by either. – korona Oct 9 '08 at 14:21
show 2 more comments
vote up 1 vote down

My rough version in PHP

<?php
foreach(range(0, 100) as $num) {
    if(is_int($num/3) && is_int($num/5)) {echo "FizzBuzz"}
    elseif(is_int($num/3)) {echo "Fizz";}
    elseif(is_int($num/5)) {echo "Buzz";}
    else {echo $num;} 
 }
?>
link|flag
vote up 1 vote down

PHP:

for ( $n=1, $m3=0, $m5=0; $n <= 100; $n++, $m3=$n%3==0, $m5=$n%5==0 ){
echo $m3 || $m5 ? ($m3 ? 'Fizz' : '') . ($m5 ? 'Buzz' : '') : $n;
}
link|flag
vote up 1 vote down
#define p printf
int main() {
    int i;
    for (i = 0; i < 100; i++) {
        (i % 3) == 0 ? p("%d=Fizz", i) : p("%d=", i);
        (i % 5) == 0 ? p("Buzz\n") : p("\n");
    }
    return 0;
}

122 characters.

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

Of course for runtime speed, you want a lookup table: in C++

enum fbType {num,fizz,buzz,fizzbuzz};
fbType FizzArray[100]{num,num,fizz,num,buzz,fizz,num,num,fizz,buzz <snip large array>,fizz,buzz}
int count=0;
while (count < 100)
{
switch(FizzArray[count++])
{
case fizz:
std::cout << "Fizz" << std::endl;
break;
case buzz:
std::cout << "Buzz" << std::endl;
break;
case fizzbuzz:
std::cout << "FizzBuzz" << std::endl;
break;
default:
std::cout << count << std::endl;
}
}
link|flag
vote up 1 vote down

@Pat

I can't believe that works. I don't have a new enough version of perl to try it. It appears to contain some seriously hilariously auto-black-magic. Like I presume you have a list with 'fizz' that you are indexing based on the mod directly and this index is allowed to be out of range?

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

@Coincoin and Pat: You've set new records for C# and Perl! You should submit them to http://www.shinh.org/p.rb?FizzBuzz and become instantly famous!

link|flag
vote up 1 vote down

@Geocoin: If you're going to say "runtime speed", then say it like you mean it: using endl (write newline + force flush) is almost certain to make your program even more I/O-bound than it already is, and makes whatever other optimisations you have totally irrelevant.

Moral of the story: cout << endl is not the same as cout << '\n'. Only use endl if you actually require your output to be flushed at that point. Here's an article by Scott Meyers (author of the Effective C++ series) that says it much better than I can. :-)

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

Simple python:

for i in range(1,101):
if (i % 5 == 0) and (i % 3 == 0):
print "FizzBuzz"
continue
if i % 3 == 0:
print "Fizz"
continue
if i % 5 == 0:
print "Buzz"
continue
print i
link|flag
vote up 1 vote down

I'm still waiting to see the COBOL implementation. :-)

link|flag
vote up 1 vote down

Here is a bunch of solutions in different languages (C, C++, D, Haskell, Lua, OCaml, PHP ...)

link|flag

Your Answer

Get an OpenID
or

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