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

Not the first way I would choose to do it but you could do the following

and now in vb.net... (for a change)

For i As Integer = 1 To 100
Select Case True
Case (i Mod 3 = 0) AndAlso (i Mod 5 = 0)
Console.WriteLine("FizzBuzz")
Case i Mod 3 = 0
Console.WriteLine("Fizz")
Case i Mod 5 = 0
Console.WriteLine("Buzz")
Case Else
Console.WriteLine(i.ToString())
End Select
Next
link|flag
vote up 2 vote down

My Java version:

import static java.lang.System.out;
public class FizzBuzz {
public static void main(String[] args) {
boolean a, b;
for (int i = 1; i <= 100; i++) {
if (a = (i % 3 == 0))
out.print("Fizz");
if (b = (i % 5 == 0))
out.print("Buzz");
if (!a && !b)
out.print(i);
out.println();
}
}
}
link|flag
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

T-SQL

WITH Numbers(Number) AS (
  SELECT 1
  UNION ALL
  SELECT Number + 1
  FROM Numbers
  WHERE Number < 100
)
SELECT
  CASE 
    WHEN Number % 3 = 0 AND Number % 5 = 0 THEN 'FizBuzz'
    WHEN Number % 3 = 0 THEN 'Fizz'
    WHEN Number % 5 = 0 THEN 'Buzz'
    ELSE CONVERT(VARCHAR(3), Number)
  END
FROM Numbers
ORDER BY Number
link|flag
vote up 2 vote down

My attempt in Java, it seems to work!

package Fun;
public class FizzBuzz {
    public static void main(String[] args) {
    	for(int i = 1; i <= 100; i++) {
    		if((i%3 == 0 || (i%5) == 0)) {
    			if((i%3) == 0) System.out.print("Fizz");
    			if((i%5) == 0) System.out.print("Buzz");
    		}
    		else { System.out.println(i); }
    		System.out.println();
    	}
    }
}
link|flag
show 1 more comment
vote up 2 vote down
WITH Nbrs(n) AS (
SELECT 1 
UNION ALL
SELECT 1 + n FROM Nbrs WHERE n < 100)
SELECT CASE WHEN n%5=0 AND n%3=0 THEN 'BizzBuzz'
WHEN n%3 = 0 THEN 'Bizz'
WHEN n%5 = 0 THEN 'Buzz'
ELSE CAST(n AS VARCHAR(8))
END
FROM Nbrs
OPTION (MAXRECURSION 100);
link|flag
vote up 2 vote down

That's my version in C++, coded in less than 2 minutes and without any test-run before completion. Does that prove I am a good programmer? Certainly not. It just shows that I can solve FizzBuzz in less than 2 minutes. Anyone who can do it in 1 minute (without preliminary thinking, of course)?

This code is exactly the first version I wrote, thus being the first solution that came to my mind. It was not improved or revised afterwards. Maybe "first version contests" could show something about someone's way of thinking.

/* first version, not improved or revised */

#include <iostream>

int main() {
   bool f;

   for (int i = 1; i <= 100; i++) {
      f = false;

      if (i % 3 == 0) {
         std::cout << "Fizz";
         f = true;
      }
      if (i % 5 == 0) {
         std::cout << "Buzz";
         f = true;
      }
      if (!f)
         std::cout << i;
      std::cout << std::endl;
   }

   return 0;
}
link|flag
vote up 2 vote down

Scala:

(1 to 100).foreach(x=>println(if (x%15==0)"FizzBuzz"else if (x%3==0)"Fizz"else if (x%5==0)"Buzz"else x))
link|flag
vote up 2 vote down

Simple, easy answer in python:

for x in range(1, 101):
    s = ''
    if not x % 3:
        s = 'Fizz'
    if not x % 5:
        s += 'Buzz'
    print s if len(s) else x
link|flag
show 1 more comment
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 2 vote down

PHP, 85 symbols:

while($i<100){$i++;echo($i%15)?($i%3)?($i%5)?$i."\n":"buzz\n":"fizz\n":"fizzbuzz\n";}
link|flag
vote up 2 vote down

In Ocaml.

let rec fizzbuzz p =
  begin
    match p mod 3, p mod 5 with
      | 0,0  -> print_string "FizzBuzz"
      | 0, _ -> print_string "Fizz"
      | _, 0 -> print_string "Buzz"
      | _,_ -> print_int p;
  end;
  print_newline();
  if p < 100 then fizzbuzz (p+1);
  in fizzbuzz 1;;
link|flag
vote up 2 vote down

C# 3.5 Code generation with CodeDom : 1 statement

using System.CodeDom;
public class FizzBuzz
{
static void Main(string[] args)
{
    new CSharpCodeProvider().CompileAssemblyFromDom(new System.CodeDom.Compiler.CompilerParameters()
    {
    	GenerateInMemory = true,
    }, new CodeCompileUnit()
    {
    	Namespaces = { 
    					new CodeNamespace() 
    					{ 
    						Name = "FizzBuzzerNameSpace" ,
    						Types = {
    									new CodeTypeDeclaration("FizzBuzzer")
    									{
    										 Members = { 
    														new CodeMemberMethod()
    														{
    															Name="Run",
    															Attributes = MemberAttributes.Static | MemberAttributes.Public,
    															Statements = {
    																			new CodeIterationStatement(
    																				new CodeVariableDeclarationStatement(new CodeTypeReference(typeof(int)), "i", new CodePrimitiveExpression(0)),
    																				new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.LessThan, new CodePrimitiveExpression(100)),
    																				new CodeAssignStatement(new CodeVariableReferenceExpression("i"), new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Add, new CodePrimitiveExpression(1))),
    																				new CodeConditionStatement(
    																					new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(3)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0)), CodeBinaryOperatorType.BooleanAnd, new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(5)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0))),
    																					new CodeExpressionStatement(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodePrimitiveExpression("FizzBuzz")))
    																					)
    																					{
    																						FalseStatements = {
    																												new CodeConditionStatement(
    																													new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(3)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0)),
    																													new CodeExpressionStatement(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodePrimitiveExpression("Fizz")))
    																												)
    																												{
    																													FalseStatements = {
    																																			new CodeConditionStatement(
    																																				new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(5)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0)),
    																																				new CodeExpressionStatement(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodePrimitiveExpression("Buzz")))
    																																			)
    																																			{
    																																				FalseStatements = {
    																																										new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodeVariableReferenceExpression("i"))
    																																								  }
    																																			}
    																																	  }
    																												}
    																										  }
    																					}
    																				)


    																		 }
    														}
    												   }
    									}
    								}
    					}
    				}
    }).CompiledAssembly.GetType("FizzBuzzerNameSpace.FizzBuzzer").GetMethod("Run").Invoke(null, new object[0] { });
}
}

C# 3.5 Code generation with CodeDom multi statement version :

using System.CodeDom;
public class FizzBuzz
{
static void Main(string[] args)
{

    CodeCompileUnit unit = new CodeCompileUnit();
    CodeNamespace ns = new CodeNamespace();
    ns.Name = "FizzBuzzerNameSpace";
    unit.Namespaces.Add(ns);

    CodeTypeDeclaration fizzBuzzer = new CodeTypeDeclaration("FizzBuzzer");
    ns.Types.Add(fizzBuzzer);

    CodeMemberMethod run = new CodeMemberMethod();
    run.Attributes = MemberAttributes.Static | MemberAttributes.Public;
    run.Name = "Run";
    fizzBuzzer.Members.Add(run);

    CodeIterationStatement forLoop = new CodeIterationStatement();

    forLoop.InitStatement = new CodeVariableDeclarationStatement(new CodeTypeReference(typeof(int)), "i", new CodePrimitiveExpression(0));
    forLoop.IncrementStatement = new CodeAssignStatement(new CodeVariableReferenceExpression("i"), new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Add, new CodePrimitiveExpression(1)));
    forLoop.TestExpression = new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.LessThan, new CodePrimitiveExpression(100));

    CodeBinaryOperatorExpression fizzBuzzCondExpression = new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(3)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0)), CodeBinaryOperatorType.BooleanAnd, new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(5)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0)));
    var invokeFizzBuzz = new CodeExpressionStatement(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodePrimitiveExpression("FizzBuzz")));
    CodeConditionStatement fizzBuzzIf = new CodeConditionStatement(fizzBuzzCondExpression, invokeFizzBuzz);

    CodeBinaryOperatorExpression fizzCondExpression = new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(3)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0));
    var invokeFizz = new CodeExpressionStatement(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodePrimitiveExpression("Fizz")));
    CodeConditionStatement fizzIf = new CodeConditionStatement(fizzCondExpression, invokeFizz);
    fizzBuzzIf.FalseStatements.Add(fizzIf);

    CodeBinaryOperatorExpression buzzCondExpression = new CodeBinaryOperatorExpression(new CodeBinaryOperatorExpression(new CodeVariableReferenceExpression("i"), CodeBinaryOperatorType.Modulus, new CodePrimitiveExpression(5)), CodeBinaryOperatorType.IdentityEquality, new CodePrimitiveExpression(0));
    var invokeBuzz = new CodeExpressionStatement(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodePrimitiveExpression("Buzz")));
    CodeConditionStatement buzzIf = new CodeConditionStatement(buzzCondExpression, invokeBuzz);
    fizzIf.FalseStatements.Add(buzzIf);
    buzzIf.FalseStatements.Add(new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(new CodeTypeReference(typeof(System.Console))), "WriteLine", new CodeVariableReferenceExpression("i")));

    forLoop.Statements.Add(fizzBuzzIf);
    run.Statements.Add(forLoop);

    CSharpCodeProvider prov = new CSharpCodeProvider();
    var result = prov.CompileAssemblyFromDom(new System.CodeDom.Compiler.CompilerParameters()
    {
    	GenerateInMemory = true,
    }, unit);
    result.CompiledAssembly.GetType("FizzBuzzerNameSpace.FizzBuzzer").GetMethod("Run").Invoke(null, new object[0] { });
    Console.Read();
}
}
link|flag
vote up 2 vote down

Didn't see any C++0x + STL solutions, so I decided to ridiculously over-engineer one:

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <boost/iterator/counting_iterator.hpp>
#include <boost/iterator/transform_iterator.hpp>
#include <boost/math/common_factor.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/bind.hpp>
using namespace std;
using namespace boost;

namespace {
  struct FizzBuzzer {
  public:
    FizzBuzzer() {
       typedef pair<int,string> factor_string_t;
       const vector<factor_string_t> factor_pairs
          = {make_pair(3,"Fizz"), make_pair(5,"Buzz")};

       const unsigned int lcm = accumulate(make_transform_iterator(factor_pairs.begin(),bind(&factor_string_t::first,_1)),
                                           make_transform_iterator(factor_pairs.end(),  bind(&factor_string_t::first,_1)),
                                           1,
                                           lcm_evaluator());

       vec_str_.resize(lcm);
       for(auto curr; factor_pairs) {
          for(int x = 0; x < lcm; x+=curr.first) {
             vec_str_[x]+=curr.second;
          }
       }           
    }

    string operator()(int i) const {
       const string& str = vec_str_[i % vec_str_.size()];
       if(str.empty())
          return lexical_cast<string>(i);
       return str;
    }
  private:
    vector<string> vec_str_;
  };
}

int main()
{
   transform(counting_iterator<int>(0),
             counting_iterator<int>(100),
             ostream_iterator<string>(cout, "\n"),
             FizzBuzzer());
}

Took me ~25 minutes (also had to look up boost's lcm impl, so that is kinda cheating). And I don't have a compiler capable of handling it yet. Probably shouldn't do this in an interview :)

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

And another T-SQL variation, this one has some close similarities to other posts here. The idea on this one was to avoid using declared variables or any existing data tables.

--first we create our temporary test data set using a CTE or Common Table Expression
with testdata (counter) as
(
select 1
union all
select counter +1
from testdata
where (counter + 1) <= 100
)

--next we run against the CTE to generate the FizzBuzz answers

select 
case when counter % 3 = 0 or counter % 5 = 0 then
    case when counter % 15 = 0 then 'FizzBuzz' else
    	case when counter % 3 = 0 then 'Fizz' else
    		case when counter % 5 = 0 then 'Buzz' 
    		end
    	end
    end
else cast(counter as char) end as FizzBuzz  
from testdata
link|flag

Your Answer

Get an OpenID
or

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