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

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

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

Javascript (66 characters):

for(var i=1;i<101;i++){alert((i%3?"":"fizz")+(i%5?"":"buzz")||i)};

Warning: Switch alert() to console.log() unless you've got a lot of time to spare

link|flag
vote up 1 vote down

because golf and J are fun:

> (((0 = 3 | ]) + 2 * 0 = 5 | ]) { ('Fizz'([ ; ] ; ,)'Buzz') ;~ ":)"0 >: i.100

55 characters with spaces removed, although I'm sure there's room for improvement.

(((0 = 3 | ]) + 2 * 0 = 5 | ]) { ('Fizz'([ ; ] ; ,)'Buzz') ;~ ])"0 >: i.100

53 if you don't mind boxed format

link|flag
vote up 1 vote down

Clojure. Golfing: 168 chars.

(defn $([n]($ 1 n))([n t](let[f(=(mod n 3)0)b(=(mod n 5)0)](if(<= n t)(do(if
f(print "Fizz"))(if b(print "Buzz"))(if(not(or f b))(print
n))(newline)(recur(inc n)t))))))

To be called as such: ($ n)

And now legible:

(defn fizzbuzz
  ([n] (fizzbuzz 1 n))
  ([n top]
    (let [fizz (=(mod n 3)0)
          buzz (=(mod n 5)0)]
      (if (<= n top)
        (do
          (if fizz
            (print "Fizz"))
          (if buzz
            (print "Buzz"))
          (if (not (or fizz buzz))
            (print n))
          (newline)
          (recur (inc n) top))))))

To be called like so: (fizzbuzz n)

Could probably be shorter, but I'm still learning the language.

link|flag
vote up 1 vote down

Here is a one liner in Lua (95 characters):

for i=1,100 do print(i%15==0 and "FizzBuzz" or i%3==0 and "Fizz" or i%5==0 and "Buzz" or i) end


(EDIT) And here is the generalized version:

function f(t) for i=t.s,t.e do r="" for _,v in ipairs(t) do r=r..(i%v[1]==0 and v[2] or "") end print(#r==0 and i or r) end end
f{s=1,e=100,{3,"Fizz"},{5,"Buzz"}}
link|flag

Your Answer

Get an OpenID
or

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