Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
docs:programming:fizzbuzz [2007/07/07 23:20] billhdocs:programming:fizzbuzz [2008/08/03 00:25] (current) – external edit 127.0.0.1
Line 2: Line 2:
   * http://www.codinghorror.com/blog/archives/000781.html   * http://www.codinghorror.com/blog/archives/000781.html
  
-=====Problem ======+===== FizzBuzz Problem Description =====
 //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".// //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".//
  
Line 34: Line 34:
 ./FizzBuzz ./FizzBuzz
 </code> </code>
 +
 +===== C++ =====
 +FIXME
 +
 +===== C# =====
 +FIXME
  
 ===== Java ===== ===== Java =====
Line 64: Line 70:
 java FizzBuzz java FizzBuzz
 </code> </code>
 +
 +
 +===== Perl =====
 +**FizzBuzz.pl**
 +<code perl>
 +#!/usr/bin/perl -w
 +
 +my $i;
 +
 +for($i=1; $i<=100; $i++){
 + if($i % 3 == 0 && $i % 5 == 0){
 + print "FizzBuzz\n";
 + }elsif($i % 3 == 0){
 + print "Fizz\n";
 + }elsif($i % 5 == 0){
 + print "Buzz\n";
 + }else{
 + print $i . "\n";
 + }
 +}
 +</code>
 +  * run<code>
 +perl FizzBuzz.pl
 +</code>
 +
 +===== Visual Basic =====
 +<code vb>
 +Public Sub FizzBuzz()
 +    Dim i As Integer
 +
 +    For i = 1 To 100
 +        If (i Mod 3 = 0 And i Mod 5 = 0) Then
 +            Debug.Print "FizzBuzz"
 +        ElseIf (i Mod 3 = 0) Then
 +            Debug.Print "Fizz"
 +        ElseIf (i Mod 5 = 0) Then
 +            Debug.Print "Buzz"
 +        Else
 +            Debug.Print i
 +        End If
 +    Next
 +End Sub
 +</code>
 +
  
 ===== Objective-C (Mac) ===== ===== Objective-C (Mac) =====
 **FizzBuzz.m** **FizzBuzz.m**
-<code obj-c>+<code objc>
 #import <Foundation/Foundation.h> #import <Foundation/Foundation.h>
    
Line 135: Line 185:
 </code> </code>
  
-===== Correct Output =====+ 
 +===== Javascript/ECMAScript ===== 
 +**FizzBuzz.htm** 
 +<code javascript> 
 +<script type="text/javascript"> 
 + var i; 
 +  
 + for(i=1; i<=100; i++){ 
 + if(i % 3 == 0 && i % 5 == 0){ 
 + document.write("FizzBuzz<br />");  
 + }else if(i % 3 == 0){ 
 + document.write("Fizz<br />"); 
 + }else if(i % 5 == 0){ 
 + document.write("Buzz<br />"); 
 + }else{ 
 + document.write(i + "<br />");  
 +
 +
 +</script> 
 +</code> 
 + 
 +===== Shell Script ===== 
 +FIXME 
 + 
 +===== Correct Output (common with all languages) =====
 <code> <code>
 1 1
  • docs/programming/fizzbuzz.1183872005.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)