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

163 Answers

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

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

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

Not as weird as some entries but here is a rather unusual python version:

a=range(101)
a[0:101:3]=['Fizz']*34
a[0:101:5]=['Buzz']*21
a[0:101:15]=['FizzBuzz']*7
for i in a[1:]: print i
link|flag
4  
Brilliant. Really, Brilliant. – DrFloyd5 Jan 12 at 17:17
show 1 more comment
vote up 10 vote down

Anybody can write a oneliner FizzBuzz, but can you generalize it?

Here's a general FizzBuzz module in Haskell:

module FizzBuzz where
import Control.Applicative

cond True  x _ = x
cond False _ y = y

fizzBuzz xs ns = cond . null . f <*> show <*> f <$> ns
  where f n = maskInt n =<< xs
        maskInt n x = cond (n `mod` (fst x) == 0) (snd x) ""

Here's a sample run:

*FizzBuzz> fizzBuzz [(3, "Bucks"), (5, "Fizz"), (7, "Buzz")] [50 .. 150]

["Fizz","Bucks","52","53","Bucks","Fizz","Buzz","Bucks","58","59","BucksFizz","61",
"62","BucksBuzz","64","Fizz","Bucks","67","68","Bucks","FizzBuzz","71","Bucks","73",
"74","BucksFizz","76","Buzz","Bucks","79","Fizz","Bucks","82","83","BucksBuzz",
"Fizz","86","Bucks","88","89","BucksFizz","Buzz","92","Bucks","94","Fizz","Bucks",
"97","Buzz","Bucks","Fizz","101","Bucks","103","104","BucksFizzBuzz","106","107",
"Bucks","109","Fizz","Bucks","Buzz","113","Bucks","Fizz","116","Bucks","118","Buzz",
"BucksFizz","121","122","Bucks","124","Fizz","BucksBuzz","127","128","Bucks","Fizz",
"131","Bucks","Buzz","134","BucksFizz","136","137","Bucks","139","FizzBuzz","Bucks",
"142","143","Bucks","Fizz","146","BucksBuzz","148","149","BucksFizz"]
link|flag
1  
> but can you generalize it? Ah, a true Haskell programmer... – Andreas Magnusson Nov 5 '08 at 12:51
2  
No true programmer would write a DestroyBaghdad procedure... – Svante Jan 19 at 16:12
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 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 8 vote down

Here's the solution in Structured Hebrew (the algorithm language taught in schools in Israel). It's a valid language because I actually wrote a compiler for it once. The following code would actually compile (sans the line numbers, which would be replaced by tabs, which don't work well with right-to-left languages in a left-to-right direction):

1. הכרז על i: שלם
2. עבור i מ-1 עד 100, בצע:
2.1 אם i % 3 = 0 וגם i % 5 = 0 אזי,
2.1.1 הדפס "FizzBuzz"
2.2 אחרת, אם i % 3 = 0 אזי,
2.2.1 הדפס "Fizz"
2.3 אחרת, אם i % 5 = 0, אזי
2.3.1 הדפס "Buzz"
2.4 אחרת,
2.4.1 הדפס i

SO really needs right-to-left support for this kind of stuff :)

link|flag
10  
I scanned your line as "It's a valid language because I accidentally wrote a compiler for it once." That makes it funny! – Matthew Schinckel Jan 20 at 12:34
vote up 101 vote down

You people tend to complicate things a lot, huh?

@echo off
echo 1
echo 2
echo Fizz
echo 4
echo Buzz
echo Fizz
echo 7
echo 8
echo Fizz
echo Buzz
echo 11
echo Fizz
echo 13
echo 14
echo FizzBuzz
echo 16
echo 17
echo Fizz
echo 19
echo Buzz
echo Fizz
echo 22
echo 23
echo Fizz
echo Buzz
echo 26
echo Fizz
echo 28
echo 29
echo FizzBuzz
echo 31
echo 32
echo Fizz
echo 34
echo Buzz
echo Fizz
echo 37
echo 38
echo Fizz
echo Buzz
echo 41
echo Fizz
echo 43
echo 44
echo FizzBuzz
echo 46
echo 47
echo Fizz
echo 49
echo Buzz
echo Fizz
echo 52
echo 53
echo Fizz
echo Buzz
echo 56
echo Fizz
echo 58
echo 59
echo FizzBuzz
echo 61
echo 62
echo Fizz
echo 64
echo Buzz
echo Fizz
echo 67
echo 68
echo Fizz
echo Buzz
echo 71
echo Fizz
echo 73
echo 74
echo FizzBuzz
echo 76
echo 77
echo Fizz
echo 79
echo Buzz
echo Fizz
echo 82
echo 83
echo Fizz
echo Buzz
echo 86
echo Fizz
echo 88
echo 89
echo FizzBuzz
echo 91
echo 92
echo Fizz
echo 94
echo Buzz
echo Fizz
echo 97
echo 98
echo Fizz
echo Buzz
link|flag
2  
So simple and elegant! – Cookey Sep 12 '08 at 16:44
47  
Of course I cheated, doh! I wrote a small Delphi program that generated this code. – gabr Sep 21 '08 at 8:19
17  
This is how you program if you're paid by the line. – Barry Brown Oct 16 '08 at 1:08
16  
I'd hire you if you wrote this in an interview. – TM Dec 31 '08 at 4:11
1  
If refactored in C or Assembler it would be the a close to optimum solution for speed/performance on modern hardware! although: main (argc argv) { print "\n1\n2\nFizz\n4\nBuzz ......... \n97\nFizz\nBuzz"; return; } Is probably the optimal C solution! – James Anderson Sep 17 at 2:04
show 6 more comments
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

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

When we were interviewing folk for a new position, we used to have candidates walk through this (in the language of their choice, though our shop uses C++) as a bozo filter. I can see that it's now too popular to use this way. ;^)

Occasionally, I'd get someone who claimed to know C++ inside-out, including the libraries. Usually we found some obvious holes. As a lark, I coded up the following FizzBuzz, and asked them to explain how it worked:

//////////////////////////////////////////////////////////////////////
//
// Stream obfuscated FizzBuzz example. Ignores most stream failure
// modes and iword/pword callbacks in the interests of
// brevity/obfuscation.

#include <iostream>
#include <string>
#include <ios>
#define IOS std::ios_base
#include <ostream>

using std::cout;
using std::endl;
using std::ostream;
using std::string;

int getIdx()
{
   static const int myIdx = IOS::xalloc();
   return myIdx;
}

class FizzBuzzer
{
public:
   FizzBuzzer() {};
   ~FizzBuzzer() {};

   ostream &print_on(ostream &os) const;
};

ostream &FizzBuzzer::print_on(ostream &os) const
{
   const string fizz("Fizz");
   const string buzz("Buzz");

   long i  = os.iword(getIdx());
   void *p = os.pword(getIdx());

   if (!p)                                 os << i;
   if (reinterpret_cast<long>(p) & 0x02)   os << fizz;
   if (reinterpret_cast<long>(p) & 0x01)   os << buzz;

   return os;
}

class FizzBuzzManip
{
public:

   explicit FizzBuzzManip(int val) : val_d(val) {};

   int divisible3() const { return (val_d % 3) ? 0 : 1; }
   int divisible5() const { return (val_d % 5) ? 0 : 1; }

private:

   int val_d;

   friend ostream &operator<<(ostream &os, const FizzBuzzManip &fz)
   {
      os.iword(getIdx()) = fz.val_d; 
      os.pword(getIdx()) = reinterpret_cast<void *>( (fz.divisible3() << 1) | fz.divisible5() );

      return os;
   }
};

ostream &operator<<(ostream &os, const FizzBuzzer &fz)
{
   return fz.print_on(os);
}

int main()
{
   FizzBuzzer theFizzBuzz;

   for (int i = 1; i <= 100; ++i) {
      cout << FizzBuzzManip(i) << theFizzBuzz << endl;
   }
}
link|flag
1  
Man, I haven't programmed C++ in a long time and this post doesn't make me want to go back! – GordonG Jan 15 at 10:02
show 3 more comments
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

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

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

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

WORKING-STORAGE SECTION.                                         

77  FIZZ-NUM  PIC 9(01) VALUE 3.                                 
77  BUZZ-NUM  PIC 9(01) VALUE 5.                                 

01  WS-FLAGS.                                                    
    05  FIZZ-FLAG         PIC 9(01).                     
        88  PRINT-FIZZ      VALUE 0.                             
    05  BUZZ-FLAG         PIC 9(01).                     
        88  PRINT-BUZZ      VALUE 0.                             

01  WS-DETAIL-LINE.                                              
    05  FILLER            PIC X(02).                             
    05  WS-DETAIL-NUMBER  PIC ZZ9.                               
    05  FILLER            PIC X(03) VALUE ' : '.                 
    05  WS-DETAIL-STRING  PIC X(08).                             

77  I         PIC 9(03).                                         

PROCEDURE DIVISION.                                              

0000-MAIN.                                                       
    PERFORM VARYING I FROM 1 BY 1 UNTIL I > 100                  
        MOVE SPACES TO WS-DETAIL-LINE                            

        COMPUTE FIZZ-FLAG = FUNCTION MOD(I, FIZZ-NUM)            
        COMPUTE BUZZ-FLAG = FUNCTION MOD(I, BUZZ-NUM)            

        EVALUATE TRUE                                            
            WHEN PRINT-FIZZ AND PRINT-BUZZ                       
                MOVE 'FIZZBUZZ' TO  WS-DETAIL-STRING              
            WHEN PRINT-FIZZ                                      
                MOVE 'FIZZ'     TO  WS-DETAIL-STRING              
            WHEN PRINT-BUZZ                                      
                MOVE 'BUZZ'     TO  WS-DETAIL-STRING              
            WHEN OTHER                                           
                MOVE I          TO  WS-DETAIL-STRING              
        END-EVALUATE                                             

        MOVE I TO WS-DETAIL-NUMBER                               

        DISPLAY WS-DETAIL-LINE                                   

    END-PERFORM.                                                 


I decided to try this in COBOL as a learning exercise and a comparative language study. Wouldn't you know it... it is much longer than my solution in C and took me much longer to write, lookin up the COBOL modulus function (thusfar, financial processing hasn't seen a great need for this) and all that.

I changed the spec a bit to also show me the current value of I, just to make things a bit nicer on me when I looked to make sure it worked. (it does)

link|flag
vote up 4 vote down

A short solution, in C:

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

Sorry. I couldn't resist.

IDENTIFICATION DIVISION.
PROGRAM-ID.  FIZZBUZZ.

DATA DIVISION.

WORKING-STORAGE SECTION.

01 WS-FIZZBUZZ-ITEMS.
   05 WS-FIZZBUZZ-ITERATION-COUNTER      PIC 9(003).
   05 WS-FIZZBUZZ-DIVISION.
      10 WS-FIZZBUZZ-QUOTIENT            PIC 9(003).
      10 WS-FIZZBUZZ-REMAINDER           PIC 9(003).
   05 WS-FIZZ-CHECKS.
      10 WS-FIZZ-CHECK                   PIC X(004)   VALUE SPACES.
         88 SW-FIZZ-IS-TRUE                           VALUE "FIZZ".
         88 SW-FIZZ-IS-NOT-TRUE                       VALUE SPACES.
      10 WS-BUZZ-CHECK                   PIC X(004)   VALUE SPACES.
         88 SW-BUZZ-IS-TRUE                           VALUE "BUZZ".
         88 SW-BUZZ-IS-NOT-TRUE                       VALUE SPACES.
      10 WS-NUMERIC-CHECK                PIC X(004)   VALUE SPACES.
         88 SW-NUMERIC-IS-TRUE                        VALUE "NUMERIC"
         88 SW-NUMERIC-IS-NOT-TRUE                    VALUE SPACES.
   05 WS-FIZZBUZZ-RECORD
      10 WS-FIZZBUZZ
         15 WS-FIZZ                      PIC X(004).
         15 WS-BUZZ                      PIC X(004).
      10 WS-NUMERIC                      PIC 9(004).



PROCEDURE DIVISION.
0100-PERFORM-FIZZBUZZ.
  PERFORM VARYING WS-FIZZBUZZ-ITERATION-COUNTER FROM 1 TO 100 BY 1
    PERFORM 0150-INITIALIZE-VARIABLES
    PERFORM 0160-INITIALIZE-SWITCHES
    PERFORM 0200-CHECK-NUMERIC-FOR-FIZZ
    PERFORM 0210-WRITE-FIZZ
    PERFORM 0300-CHECK-NUMERIC-FOR-BUZZ
    PERFORM 0310-WRITE-BUZZ
    PERFORM 0400-CHECK-NUMERIC-FOR-NUMERIC
    PERFORM 0410-WRITE-NUMERIC
    PERFORM 0500-DISPLAY-RECORD
    STOP RUN
.

0150-INITIALIZE-VARIABLES.
    MOVE ZEROES TO WS-FIZZBUZZ-ITERATION-COUNTER
    MOVE ZEROES TO WS-FIZZBUZZ-DIVISION
    MOVE SPACES TO WS-FIZZ
    MOVE SPACES TO WS-BUZZ
    MOVE ZEROES TO WS-NUMERIC
.

0160-INITIALIZE-SWITCHES.
    SET SW-FIZZ-IS-NOT-TRUE TO TRUE
    SET SW-BUZZ-IS-NOT-TRUE TO TRUE
    SET SW-NUMERIC-IS-NOT-TRUE TO TRUE
.


0200-CHECK-NUMERIC-FOR-FIZZ.
  DIVIDE WS-FIZZBUZZ-ITERATION-COUNTER BY 5 GIVING WS-FIZZ-QUOTIENT REMAINDER WS-FIZZ-REMAINDER.
  IF WS-FIZZ-REMAINDER IS EQUAL TO ZERO
    SET SW-FIZZ-IS-TRUE TO TRUE.
  END-IF
.

0210-WRITE-FIZZ.
    IF WS-FIZZ-CHECK = "FIZZ"
      MOVE "FIZZ" TO WS-FIZZ
    END-IF
.

0300-CHECK-NUMERIC-FOR-BUZZ.
  DIVIDE WS-FIZZBUZZ-ITERATION-COUNTER BY 10 GIVING WS-BUZZ-QUOTIENT REMAINDER WS-BUZZ-REMAINDER.
  IF WS-FIZZ-REMAINDER IS EQUAL TO ZERO
    SET SW-BUZZ-IS-TRUE TO TRUE.
  END-IF
.

0310-WRITE-BUZZ.
    IF WS-BUZZ-CHECK = "BUZZ"
      MOVE "BUZZ" TO WS-BUZZ
    END-IF
.

0400-CHECK-NUMERIC-FOR-NUMERIC.
  IF NOT WS-FIZZ IS EQUAL TO "FIZZ" AND NOT WS-BUZZ IS EQUAL TO "BUZZ"
     SET SW-NUMERIC-IS-TRUE TO TRUE.
  END-IF
.

0410-WRITE-NUMERIC.
    IF WS-NUMERIC-CHECK = "BUZZ"
      MOVE WS-FIZZBUZZ-ITERATION-COUNTER TO WS-NUMERIC
    END-IF
.


0500-DISPLAY-RECORD.
  IF WS-FIZZ IS EQUAL TO "FIZZ" AND WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-FIZZBUZZ BEFORE ADVANCING 1 LINE
  END-IF
  IF WS-FIZZ IS EQUAL TO "FIZZ" AND NOT WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-FIZZ BEFORE ADVANCING 1 LINE
  END-IF
  IF NOT WS-FIZZ IS EQUAL TO "FIZZ" AND WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-BUZZ BEFORE ADVANCING 1 LINE
  END-IF
  IF NOT WS-FIZZ IS EQUAL TO "FIZZ" AND NOT WS-BUZZ IS EQUAL TO "BUZZ"
     DISPLAY WS-NUMERIC BEFORE ADVANCING 1 LINE
  END-IF
.
link|flag
2  
Oh, the memory... and the pain... – Sklivvz Oct 15 '08 at 10:05
3  
Aargh... COBOL. I had nearly blocked out my brief, horrifying stint in this language. Thanks. ;) – Adam Lassek Oct 27 '08 at 17:45
6  
I'm afraid we are going to have to nuke this post from orbit to be safe! – Loren Pechtel Dec 31 '08 at 5:13
3  
Gah! Where's my silver cross and my garlic?!? – John Pirie Jun 24 at 13:38
show 3 more comments
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 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 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

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

PHP 1 liner

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

Your Answer

Get an OpenID
or

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