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

prev 1 2 3 4 5 6
vote up 0 vote down

Here is Fizz Buzz in IL:

.method public hidebysig static void FizzBuzz() cil managed
{
    .maxstack 2
    .locals init (
        [0] bool fizz,
        [1] bool buzz,
        [2] int32 i,
        [3] bool CS$4$0000)
    L_0000: nop 
    L_0001: ldc.i4.1 
    L_0002: stloc.2 
    L_0003: br.s L_0051
    L_0005: nop 
    L_0006: ldloc.2 
    L_0007: ldc.i4.3 
    L_0008: rem 
    L_0009: ldc.i4.0 
    L_000a: ceq 
    L_000c: stloc.0 
    L_000d: ldloc.2 
    L_000e: ldc.i4.5 
    L_000f: rem 
    L_0010: ldc.i4.0 
    L_0011: ceq 
    L_0013: stloc.1 
    L_0014: ldloc.0 
    L_0015: ldc.i4.0 
    L_0016: ceq 
    L_0018: stloc.3 
    L_0019: ldloc.3 
    L_001a: brtrue.s L_0027
    L_001c: ldstr "Fizz"
    L_0021: call void [mscorlib]System.Console::WriteLine(string)
    L_0026: nop 
    L_0027: ldloc.1 
    L_0028: ldc.i4.0 
    L_0029: ceq 
    L_002b: stloc.3 
    L_002c: ldloc.3 
    L_002d: brtrue.s L_003a
    L_002f: ldstr "Buzz"
    L_0034: call void [mscorlib]System.Console::WriteLine(string)
    L_0039: nop 
    L_003a: ldloc.0 
    L_003b: brfalse.s L_0040
    L_003d: ldloc.1 
    L_003e: br.s L_0041
    L_0040: ldc.i4.1 
    L_0041: stloc.3 
    L_0042: ldloc.3 
    L_0043: brtrue.s L_004c
    L_0045: ldloc.2 
    L_0046: call void [mscorlib]System.Console::WriteLine(int32)
    L_004b: nop 
    L_004c: nop 
    L_004d: ldloc.2 
    L_004e: ldc.i4.1 
    L_004f: add 
    L_0050: stloc.2 
    L_0051: ldloc.2 
    L_0052: ldc.i4.s 100
    L_0054: cgt 
    L_0056: ldc.i4.0 
    L_0057: ceq 
    L_0059: stloc.3 
    L_005a: ldloc.3 
    L_005b: brtrue.s L_0005
    L_005d: ret 
}
link|flag
vote up 0 vote down

Using the new Proc#=== in Ruby 1.9:

def divisible_by(factor)
  lambda {|product| product.modulo( factor ).zero? }
end

1.upto 100 do |number|
  puts case number
         when divisible_by 15: "FizzBuzz"
         when divisible_by 3: "Fizz"
         when divisible_by 5: "Buzz"
         else: number
       end
end
link|flag
vote up 0 vote down

Yet another C version (77 chars). People at anarchy golf have managed to bring it down to 73, but as a newbie golfer I can't find any more corners to cut. Ideas?

main(i){while(i<101)printf(i%3?i%5?"%d":"":"Fizz",i)|puts(i++%5?"":"Buzz");}
link|flag
vote up 0 vote down

Here's one I did a while ago in Haskell (generalized & should run very quick -- no arithmetic is performed after the initial setup):

gizzabuzz pairs combiner = zipWith ($) (cycle funcs) [1..]
    where 
    funcs = map (\n -> display $ mapMaybe (filterOut n) sortedPairs) [1..foldr1 lcm $ map fst $ sortedPairs]
    display [] = show
    display xs = foldr1 combiner . sequence (map const xs)
    sortedPairs = sortBy (compare `on` fst) pairs
    filterOut n (x,y)
	    | n `mod` x == 0 = Just y
	    | otherwise      = Nothing

fizzbuzz = gizzabuzz [(3,"Fizz"),(5,"Buzz")] (++)
link|flag
vote up 0 vote down

Java, 130 characters:

public class A{static{for(int i=1;i<100;i++) {boolean b=i%3==0,c=i%5==0;System.out.println(b||c?(b?"Fizz":"")+(c?"Buzz":""):i);}}}

Now, this is kinda cheating, because when you run it at the end it will say:

Exception in thread "main" java.lang.NoSuchMethodError: main

But it still works....

link|flag
vote up 0 vote down

Yet Another T-SQL Variation (hadn't seen this one yet):

declare @var char(8)
declare @counter int

set @var = 0
set @counter = 0

while @counter < 100
begin
set @counter = @counter +1
set @var = @counter
while @counter % 3 = 0 or @counter % 5 = 0 
begin 
    if @counter % 3 = 0	
    	set @var = 'Fizz'
    if @counter % 5 = 0 
    	set @var = 'Buzz'
    if @counter % 15 = 0
    	set @var = 'FizzBuzz'
break
end
print @var
set @var = 0
end
link|flag
vote up 0 vote down

Perl:

#!/usr/bin/env perl

use strict;
use warnings;

foreach my $i (1 .. 100)
{
  print
    !($i % 15)
      ? 'FizzBuzz'
      : !($i % 5)
        ? 'Buzz'
        : !($i % 3)
          ? 'Fizz'
          : $i;
  print "\n";
}

As a one-liner:

perl -e 'print $_%15?$_%5?$_%3?$_:"Fizz":"Buzz":"FizzBuzz","\n"for(1..100)'
link|flag
show 2 more comments
vote up 0 vote down

Another Java solution, without cheating but with a couple of shorcuts (130 chars):

class L{public static void main(String[]a){for(int i=0;i++<100;)System.out.println((i%3>0?"":"fizz")+(i%5>0?i%3>0?i:"":"buzz"));}}

By using the same cheat as Isaac (runs but you get exception), you can get it down to 102 chars:

class J{static{for(int i=0;i++<100;)System.out.println((i%3>0?"":"fizz")+(i%5>0?i%3>0?i:"":"buzz"));}}

By really cheating, 68 chars:

class C{public static void main(String[]a){System.out.print(a[0]);}}

and passing "1 2 fizz 4 buzz ..." on the command line ;-)

link|flag
vote up 0 vote down

Easiest solution is in python:

def fizzbuzz():
    for i in range(1,100):
    	if ((i % 5 ) == 0) and ((i%3) == 0):
    		print "FizzBuzz"
    	elif (i % 3) == 0:
    		print "Fizz"
    	elif (i % 5) == 0:
    		print "Buzz"
    	else: 
    		print i

if __name__ == '__main__':
    fizzbuzz()
link|flag
show 2 more comments
vote up 0 vote down

Of course, in C# you should use a simple linq one liner for something like this

string[] fizzBuzz = { "Fizz", "Buzz" };
return String.Join( String.Empty, Enumerable.Range(1, Int32.MaxValue)
.TakeWhile(n => n < Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable.Range(1, Int32.MaxValue)
.Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0).Skip(25)
.First()).Select(a => (Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(1).TakeWhile(d => d < Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(fizzBuzz.Length + 1).First()).Where(b => a % b == 0)
.Select(c => fizzBuzz[Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(1).TakeWhile(e => e < Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(fizzBuzz.Length + 1).First()).IndexOf(c)]).Count() == 0) ? a.ToString() : String
.Join( String.Empty, Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(1).TakeWhile(d => d < Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(fizzBuzz.Length + 1).First()).Where(b => a % b == 0)
.Select(c => fizzBuzz[Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(1).TakeWhile(e => e < Enumerable.Range(1, Int32.MaxValue).Where(g => g > 1 && Enumerable
.Range(1, Int32.MaxValue).Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
.Skip(fizzBuzz.Length + 1).First()).IndexOf(c)]).ToArray())).ToArray());

For anyone wondering what it actually does, here is the basic method without inlining of help methods

String.Join("",
    Utility.PositiveNumbers().TakeWhile(n => n < Utility.Primes().Skip(25).First())
    .Select(a => (GetFizzBuzzValues(a).Count() == 0) ? a.ToString() : String.Join("", GetFizzBuzzValues(a).ToArray()))
.ToArray());

where GetFizzBuzzValues works like this

public IEnumerable<string>  GetFizzBuzzValues(int a){
    return GetFizzBuzzValues(a, FirstXUnEvenPrimes(fizzBuzz.Length));
}

public IEnumerable<string> GetFizzBuzzValues(int a,IEnumerable<int> possible){
   return possible.Where(b => a % b == 0).Select(c => fizzBuzz[possible.IndexOf(c)]);
}

public IEnumerable<int> FirstXUnEvenPrimes(int x){
    return Utility.Primes().Skip(1).TakeWhile(b => b < Utility.Primes().Skip(x+1 ).First());
}

Finally replace Utility.Primes() and Utility.PositiveNumbers with these two rows.

Utility.PositiveNumbers().Where(g => g > 1 && Utility.PositiveNumbers().Skip(1).TakeWhile(i => i < g).Where(h => g % h == 0).Count() == 0)
Enumerable.Range(1, Int32.MaxValue)
link|flag
vote up 0 vote down

TI-BASIC:

:For(X,1,100)
:If not(fPart(X/3))
:Disp "FIZZ"
:If not(fPart(X/5))
:Disp "BUZZ"
:If fPart(X/5)≠0 and fPart(x/3)≠0
:Disp X
:End
link|flag
vote up 0 vote down

In Perl:

use strict;
use warnings;

for my $num (1 .. 100)
{
    my $str = '';
    $str .= "Fizz" unless $num % 3;
    $str .= "Buzz" unless $num % 5;
    print $str || $num , "\n";
}

This would be a good interview for a Perl job because it can reveal how perlish or Cish the programmer thinks. e.g. I would not be impressed by an intermediate-level programmer writing a C-style solution (for ($i = 1; $i <= 100; $i++), if-blocks with indentation (i.e. if (blah) { stuff } rather than stuff if blah), etc).

link|flag
prev 1 2 3 4 5 6

Your Answer

Get an OpenID
or

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