What is your solution to the FizzBuzz problem? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T04:24:54Zhttp://stackoverflow.com/feeds/question/437http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem66What is your solution to the FizzBuzz problem?saniul2008-08-02T12:53:19Z2009-11-03T00:56:08Z
<p>See <a href="http://www.codinghorror.com/blog/archives/000781.html" rel="nofollow">here</a></p>
<p>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".</p>
<p><em>Disclaimer: I do realize this is easy, and I understand the content of the Coding Horror post I just linked to</em></p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/444#4442Answer by Grant for What is your solution to the FizzBuzz problem?Grant2008-08-02T13:16:05Z2008-08-02T15:41:42Z<pre><code>#!C:\Python25\python.exe
for i in range(1,100):
something = False
text = ""
if not (i%3):
text = text + "Fizz"
something = True
if not (i%5):
text = text + "Buzz"
something = True
if not(something):
print i
else:
print text
</code></pre>
<p>That was easy-cheesy...</p>
<p>edit: apparently it's "Buzz", not "Bizz".</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/447#4472Answer by Peter Coulton for What is your solution to the FizzBuzz problem?Peter Coulton2008-08-02T13:21:54Z2008-08-02T14:17:34Z<pre><code><h1>The Fizz Problem</h1><br><pre><br><?php<br><br> for ($i=1; $i<=100; $i++)<br> {<br><br> $divBy3 = !($i % 3);<br> $divBy5 = !($i % 5);<br><br> if ($divBy3)<br> {<br> print "Fizz";<br> }<br><br> if ($divBy5)<br> {<br> print "Buzz";<br> }<br> else if (!$divBy3)<br> {<br> print "$i";<br> }<br><br> print "\n";<br> }<br>?><br></pre><br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/452#4527Answer by Karl Seguin for What is your solution to the FizzBuzz problem?Karl Seguin2008-08-02T13:52:33Z2008-08-02T13:52:33Z<p>I know you didn't ask for the shortest, but this is the shortest I know of without rechecking the modulus (in ruby)</p>
<pre><code>100.times do |i|<br> value = (i % 3 == 0) ? 'Fizz' : '';<br> value += 'Buzz' if (i % 5 == 0)<br> puts value.empty? ? i : value;<br>end<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/453#45347Answer by Michiel de Mare for What is your solution to the FizzBuzz problem?Michiel de Mare2008-08-02T13:55:54Z2008-08-16T09:34:51Z<p>The only real challenge here is turning it in a <a href="http://codegolf.com/" rel="nofollow">golf match</a>. </p>
<p><strong>Updated</strong>. Now 70 characters in Ruby, 8 characters behind Perl:</p>
<pre><code>1.upto(100){|i|a,b=[:Fizz][i%3],[:Buzz][i%5];puts a||b ? "#{a}#{b}":i}
</code></pre>
<p>Allowing concatenation (+) for symbols and nil, e.g. (nil + :foo == 'foo', nil + nil == '') would help us a lot. We can monkeypatch Ruby to support this:</p>
<pre><code>class Symbol
def +(other)
to_s + other.to_s
end
end
class NilClass
def +(other)
other.to_s
end
end
</code></pre>
<p>Now we're down to 58 characters, not counting the monkeypatch, 4 less than Perl:</p>
<pre><code>1.upto(100){|_|s=[:Fizz][_%3]+[:Buzz][_%5];puts s!=''?s:_}
</code></pre>
<p><strong>Updated.</strong> I found the best Ruby solution in comp.lang.ruby. 56 characters, but using <code>?d</code> for <code>100</code> is sinking pretty damn low, IMHO.</p>
<pre><code>1.upto(?d){|i|i%3<1&&x=:Fizz;puts i%5<1?"#{x}Buzz":x||i}
</code></pre>
<p>Which language features (that we cannot add by monkeypatching) would make this even shorter?</p>
<ul>
<li>an implicit variable (_) for blocks (Perl has this)</li>
<li>the empty string evaluating to false (Perl has this. Zero (0) too is false.)</li>
</ul>
<p>With these features, fizzbuzz would look like this (46 characters):</p>
<pre><code>1.upto(100){puts [:Fizz][_%3]+[:Buzz][_%5]||_}
</code></pre>
<p><a href="http://beta.stackoverflow.com/questions/437/#1851" rel="nofollow">@lbrandy</a>: golfscript is very cool. I got fizzbuzz down to 43 characters, but there's definitely room for improvement:</p>
<pre><code>101,(;{\..3%'''Fizz'if\5%'''Buzz'if+\or}%n*
</code></pre>
<p><strong>Updated.</strong> I've got it down to 37 characters, lbrandy, building on your solution (which is 40 characters, incidentally). You can save two characters by replacing <code><1</code> by <code>!</code>, twice. And another one by creating an 0..99 array and incrementing the number in the loop, instead of creating a 0..100 array and throwing away the first element.</p>
<pre><code>100,{)..3%!'Fizz'*\5%!'Buzz'*+\or}%n*
</code></pre>
<p>Amazing what you can do with 36 primitives and 4 datatypes! A new addiction is born.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/456#4561Answer by Prakash for What is your solution to the FizzBuzz problem?Prakash2008-08-02T14:09:38Z2008-08-02T14:09:38Z<p>Glad to post the first response in C ;)</p>
<pre><code>int main(int argc, _TCHAR* argv[])<br>{<br> for(int i = 0; i < 100 ; i++)<br> {<br> if(i%3)<br> {<br> if(i%5)<br> {<br> printf("FizzBuzz");<br> }<br> else<br> {<br> printf("Fizz");<br> }<br> }<br> else if(i%5)<br> {<br> printf("Buzz");<br> }<br> }<br> return 0;<br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/479#4794Answer by Pete for What is your solution to the FizzBuzz problem?Pete2008-08-02T15:56:39Z2008-08-02T15:56:39Z<p>C#...</p>
<pre><code> for (int i=1; i<=100; i++)<br> {<br> if ((i%3==0) && (i%5==0))<br> {<br> Console.WriteLine("FizzBuzz");<br> }<br> else if (i%3 == 0)<br> {<br> Console.WriteLine("Fizz");<br> }<br> else if (i%5 == 0)<br> {<br> Console.WriteLine("Buzz");<br> }<br> else<br> {<br> Console.WriteLine(i.ToString());<br> }<br> }<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/481#4812Answer by John for What is your solution to the FizzBuzz problem?John2008-08-02T16:09:51Z2008-08-02T16:09:51Z<p>Not the first way I would choose to do it but you could do the following </p>
<p>and now in vb.net... (for a change)</p>
<pre><code>For i As Integer = 1 To 100<br> Select Case True<br> Case (i Mod 3 = 0) AndAlso (i Mod 5 = 0)<br> Console.WriteLine("FizzBuzz")<br> Case i Mod 3 = 0<br> Console.WriteLine("Fizz")<br> Case i Mod 5 = 0<br> Console.WriteLine("Buzz")<br> Case Else<br> Console.WriteLine(i.ToString())<br> End Select<br> Next<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/550#5501Answer by Kevin for What is your solution to the FizzBuzz problem?Kevin2008-08-02T20:00:48Z2008-08-03T20:43:44Z<p>PHP:</p>
<pre><code>for ( $n=1, $m3=0, $m5=0; $n <= 100; $n++, $m3=$n%3==0, $m5=$n%5==0 ){<br> echo $m3 || $m5 ? ($m3 ? 'Fizz' : '') . ($m5 ? 'Buzz' : '') : $n;<br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/577#5774Answer by cmcculloh for What is your solution to the FizzBuzz problem?cmcculloh2008-08-02T23:17:44Z2008-12-18T06:21:51Z<p>Ok, just for grins, here it is in JavaScript:</p>
<pre><code>for(i = 1; i <= 100; i++){
var fizz = (i % 3 == 0);
var buzz = (i % 5 == 0);
var output = "";
//if number is not divisible by 3 or 5, output number
if(!fizz && !buzz){
output = i;
}else{
//if number is divisible by 3, output Fizz
if(fizz){
output = "Fizz";
}
//if number is divisible by 5, add Buzz to output
if(buzz){
output += "Buzz";
}
}
document.write(output + "<br />");
}
</code></pre>
<p>There's about a billion different ways to do this...</p>
<p><hr /></p>
<p>Way #567,895,670 ("no loops, no ifs" version):</p>
<pre><code>document.write(
new Array(8)
.join("001021001201003")
.substr(0, 100)
.replace(
/\d/g,
function (s, i) {
return [ i + 1, "Fizz", "Buzz", "FizzBuzz" ][s] + "<br/>";
})
);
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/579#5793Answer by akdom for What is your solution to the FizzBuzz problem?akdom2008-08-02T23:27:36Z2008-08-02T23:27:36Z<p>Alright, here's an example of a one line <em>python</em> <strong>FizzBuzz</strong> using a list comprehension. It takes advantage of pure boolean logic in place of any control structure. I did it purely to see if I could.</p>
<pre><code>#!/bin/python<br>#FizzBuzz with an unpythonic List Comprehension<br>print [(((not i%3 and not i%5) * 'FizzBuzz') or ((not i%3) * 'Fizz') or ((not i%5) * 'Buzz') or i) for i in range(1,101)]<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/584#58410Answer by Grant for What is your solution to the FizzBuzz problem?Grant2008-08-02T23:39:29Z2008-08-02T23:39:29Z<p>Another python. It won't win the golf match, but it uses the least amount of loops/instructions.</p>
<pre><code>#!C:\Python25\python.exe<br>print """1\n2\nFizz\n4\nBizz\nFizz\n7\n8\nFizz\nBizz<br>11\nFizz\n13\n14\nFizzBizz\n16\n17\nFizz\n19\nBizz<br>Fizz\n22\n23\nFizz\nBizz\n26\nFizz\n28\n29\nFizzBizz<br>31\n32\nFizz\n34\nBizz\nFizz\n37\n38\nFizz\nBizz<br>41\nFizz\n43\n44\nFizzBizz\n46\n47\nFizz\n49\nBizz<br>Fizz\n52\n53\nFizz\nBizz\n56\nFizz\n58\n59\nFizzBizz<br>61\n62\nFizz\n64\nBizz\nFizz\n67\n68\nFizz\nBizz<br>71\nFizz\n73\n74\nFizzBizz\n76\n77\nFizz\n79\nBizz<br>Fizz\n82\n83\nFizz\nBizz\n86\nFizz\n88\n89\nFizzBizz<br>91\n92\nFizz\n94\nBizz\nFizz\n97\n98\nFizz<br>"""<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/652#6521Answer by Unkwntech for What is your solution to the FizzBuzz problem?Unkwntech2008-08-03T11:27:17Z2008-08-03T11:27:17Z<p>My rough version in PHP</p>
<pre><code><?php
foreach(range(0, 100) as $num) {
if(is_int($num/3) && is_int($num/5)) {echo "FizzBuzz"}
elseif(is_int($num/3)) {echo "Fizz";}
elseif(is_int($num/5)) {echo "Buzz";}
else {echo $num;}
}
?>
</code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/708#7086Answer by John for What is your solution to the FizzBuzz problem?John2008-08-03T14:49:37Z2008-08-03T14:49:37Z<p>Can't beat the golf champ but a short c# version (115 chars):</p>
<pre><code>for (int i = 1; i < 101; i++) {Console.WriteLine(((i % 3) + (i % 5) == 0 ? "FizzBuzz" : (i % 3 == 0 ? "Fizz" : (i % 5 == 0 ? "Buzz" : i.ToString())))); } <br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/767#7673Answer by Rudd Zwolinski for What is your solution to the FizzBuzz problem?Rudd Zwolinski2008-08-03T17:45:08Z2008-08-03T17:45:08Z<p>Going golfing... 70 characters in Perl:</p>
<pre>for(1..100){print $_%3?($_%5?$_:'Buzz'):($_%5?'Fizz':'FizzBuzz'),"\n"}<br><code></code></pre><code><code></code></code>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/856#85669Answer by deuseldorf for What is your solution to the FizzBuzz problem?deuseldorf2008-08-03T22:04:51Z2009-07-08T16:59:40Z<p>The author asked for a language agnostic solution and so I will attack the question with pseudocode! We could argue about efficency all day but I find this the most readable form.</p>
<pre><code>
for every integer 1 to 100
if the integer is divisible by 3 and divisible by 5
print "FizzBuzz"
else if the integer is divisible by 3
print "Fizz"
else if the integer is divisible by 5
print "Buzz"
else
print the integer
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1222#12221Answer by Mark for What is your solution to the FizzBuzz problem?Mark2008-08-04T13:31:12Z2008-08-04T13:31:12Z<pre><code>#define p printf
int main() {
int i;
for (i = 0; i < 100; i++) {
(i % 3) == 0 ? p("%d=Fizz", i) : p("%d=", i);
(i % 5) == 0 ? p("Buzz\n") : p("\n");
}
return 0;
}
</code></pre>
<p>122 characters. </p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1295#12951Answer by Matthew Schinckel for What is your solution to the FizzBuzz problem?Matthew Schinckel2008-08-04T14:49:25Z2009-01-20T12:38:52Z<p>In Scheme:</p>
<pre><code>(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)))))
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1473#147322Answer by lbrandy for What is your solution to the FizzBuzz problem?lbrandy2008-08-04T18:09:09Z2008-08-05T13:28:06Z<p>Code golf it is. Python. 58 characters. No monkey-patching required :P. Woo.</p>
<pre><code>i=0;exec"i+=1;print(i%5<1)*'fizz'+(i%3<1)*'buzz'or i;"*100<br></code></pre>
<p><em>edited: to 72</em></p>
<p><em>edited: to 58, incorporating an idea from <a href="http://beta.stackoverflow.com/questions/437/#2186" rel="nofollow">http://beta.stackoverflow.com/questions/437/#2186</a> (@PabloG, <1 works better than 'not')</em></p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1481#14816Answer by Mat for What is your solution to the FizzBuzz problem?Mat2008-08-04T18:29:02Z2008-08-04T19:03:49Z<pre><code><?while($i++<100)echo(($j=($i%3?"":"Fizz").($i%5?"":"Buzz"))?$j:$i)."<br>";<br></code></pre>
<p>PHP, 72 characters. Yes, that is a literal newline.</p>
<p>(many edits happened, didn't track them all!)</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1493#14935Answer by lbrandy for What is your solution to the FizzBuzz problem?lbrandy2008-08-04T18:46:00Z2008-10-12T12:22:05Z<p>Here's 62 in Perl and I'm not even good at perl. I'm sure Perl golfer could do better.</p>
<pre><code>print"$_\n"for map{($_%3?"":"Fizz").($_%5?"":"Buzz")||$_}1..100
</code></pre>
<p>edit: added 1 char to go to 100, not 99</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1560#156036Answer by vzczc for What is your solution to the FizzBuzz problem?vzczc2008-08-04T20:21:59Z2008-08-04T21:01:55Z<H1>Excel version</H1>
<P>Place this in column B and numbers from 1 to 100 in column A</P>=IF(MOD(A1,15),IF(MOD(A1,5),IF(MOD(A1,3),A1,"Fizz"),"Buzz"),"FizzBuzz")<BR>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1663#166322Answer by fastcall for What is your solution to the FizzBuzz problem?fastcall2008-08-04T22:40:05Z2008-08-04T22:40:05Z<p>Assuming I were doing this for an interview, I don't think I'd try to show off by cutting down on the number of lines. I'd try to make my answer as clean and simple as possible. In C#,</p>
<pre><code>foreach (int number in Enumerable.Range(1, 100)) {<br><br> bool isDivisibleBy3 = (number % 3) == 0;<br> bool isDivisibleBy5 = (number % 5) == 0;<br><br> if (isDivisibleBy3)<br> Console.Write("Fizz");<br><br> if (isDivisibleBy5)<br> Console.Write("Buzz");<br><br> if (!isDivisibleBy3 && !isDivisibleBy5)<br> Console.Write(number);<br><br> Console.WriteLine();<br><br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1851#18514Answer by lbrandy for What is your solution to the FizzBuzz problem?lbrandy2008-08-05T03:08:40Z2008-08-05T18:11:39Z<p><a href="http://beta.stackoverflow.com/questions/437/#453" rel="nofollow">@Michiel de Mare</a></p>
<blockquote>
<p>Which language features (that we cannot add by monkeypatching) would make this even shorter?</p>
</blockquote>
<p>At the risk of going a bit off-topic, here are some:</p>
<ol>
<li>Extremely aggressive type coercion (with high levels of automagic)</li>
<li>Stack based</li>
<li>High level operations (map, join, rotate, split, sort, 'every ith element', etc.)</li>
<li>For #3, using single characters for all of them :)</li>
</ol>
<p>Taken from <a href="http://www.golfscript.com/golfscript/index.html" rel="nofollow">golfscript</a> which was a language invented precisely for this purpose.</p>
<p><strong>Updated</strong>: <a href="http://beta.stackoverflow.com/questions/437/#453" rel="nofollow">@Michiel de Mare</a> ... my golfscript version. 39 characters. Programming in this hurts my brain. I'm sure you could do better, though. It works on the same principle as my 58 character python one. Essentially do a n%3<1 and multiply that by fizz (similar for buzz). Add those. And then or the result with the number. So a null string will be replaced by the number.</p>
<pre><code>101,(;{..3%1<'fizz'*\5%1<'buzz'*+\or}%n*<br></code></pre>
<p>You can see "top" scores for diff. languages here: <a href="http://www.shinh.org/p.rb?FizzBuzz" rel="nofollow">http://www.shinh.org/p.rb?FizzBuzz</a>. The best golfscript is 37 versus my 39. The best python is 56 vs my 58. And the best ruby is 56 (with no monkey patching :P).</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1868#18683Answer by shsteimer for What is your solution to the FizzBuzz problem?shsteimer2008-08-05T03:50:19Z2008-08-08T04:23:17Z<p>Java...
takes a command line arg for max value to run until, if not supplied uses 100</p>
<pre><code>package stuff.fizzbuzz;<br>public class FizzBuzz {<br> public static void main(String[] args){<br> int max=100;<br> if(args.length>1){print("usage: FizzBuzz <maxCount>");System.exit(0);}<br> if(args.length==1)max = Integer.valueOf(args[0]).intValue();<br> for(int i=1;i<=max;i++){<br> boolean modThree = i%3==0;<br> boolean modFive = i%5==0;<br> if(modThree)print("Fizz");<br> if(modFive)print("Buzz");<br> if(!modThree&&!modFive)print(i);<br> println();<br> } <br> }<br> private static void print(String s){System.out.print(s);}<br> private static void print(int i){System.out.print(i);}<br> private static void println(){System.out.println("");}<br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1902#1902131Answer by Wolfbyte for What is your solution to the FizzBuzz problem?Wolfbyte2008-08-05T04:47:43Z2008-08-05T04:47:43Z<P>Golfing is easy. How <EM>large</EM> can you make it?</P>
<P><A href="http://code.google.com/p/fizzbuzz/" rel="nofollow">Enterprise FizzBuzz</A> is written in C# and weighs in at 12 classes and 3 interfaces (not including the main program driver). It comes with a suite of unit tests written in MbUnit. It's fairly loosely coupled but I really should update it for C# 3.5. </P>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/2026#20265Answer by Liron Yahdav for What is your solution to the FizzBuzz problem?Liron Yahdav2008-08-05T08:52:01Z2008-08-05T08:52:01Z<p>Here's a Delphi/Pascal version:</p>
<pre><code>var<br> I: Integer;<br>begin<br> for I := 1 to 100 do<br> if (I mod 3 = 0) and (I mod 5 = 0) then<br> WriteLn('FizzBuzz')<br> else if I mod 3 = 0 then<br> WriteLn('Fizz')<br> else if I mod 5 = 0 then<br> WriteLn('Buzz')<br> else <br> WriteLn(IntToStr(I));<br>end.<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/2083#20833Answer by David for What is your solution to the FizzBuzz problem?David2008-08-05T10:54:41Z2008-08-05T10:54:41Z<p>C++ (first post !)</p>
<pre><code>#include <iostream><br><br>int main (int argc, char* argv[])<br>{<br> int threeRem;<br> int fiveRem;<br><br> for (int i = 1; i <= 100; i++)<br> {<br> threeRem = i % 3;<br> fiveRem = i % 5;<br><br> if (fiveRem == 0 && threeRem == 0)<br> std::cout << "FizzBuzz" << std::endl;<br> else if (threeRem == 0)<br> std::cout << "Fizz" << std::endl;<br> else if (fiveRem == 0)<br> std::cout << "Buzz" << std::endl;<br> else <br> std::cout << i << std::endl; <br> }<br><br> return(0); <br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/2186#21863Answer by PabloG for What is your solution to the FizzBuzz problem?PabloG2008-08-05T12:36:16Z2008-08-05T18:59:54Z<p>Python, modifying slightly from akdom</p>
<pre><code>print[(((not i%3)*'Fizz')+((not i%5)*'Buzz')) or i for i in range(1,101)]
</code></pre>
<p>73 characters and still pritty legible!</p>
<pre><code>print["Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i for i in range(1,101)]
</code></pre>
<p>Down to 62 and more legible now (thx @lbrandy)</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/2512#25121Answer by geocoin for What is your solution to the FizzBuzz problem?geocoin2008-08-05T16:01:05Z2008-08-05T16:01:05Z<p>Of course for runtime speed, you want a lookup table:
in C++</p>
<pre><code>enum fbType {num,fizz,buzz,fizzbuzz};<br>fbType FizzArray[100]{num,num,fizz,num,buzz,fizz,num,num,fizz,buzz <snip large array>,fizz,buzz}<br>int count=0;<br>while (count < 100)<br>{<br> switch(FizzArray[count++])<br> {<br> case fizz:<br> std::cout << "Fizz" << std::endl;<br> break;<br> case buzz:<br> std::cout << "Buzz" << std::endl;<br> break;<br> case fizzbuzz:<br> std::cout << "FizzBuzz" << std::endl;<br> break;<br> default:<br> std::cout << count << std::endl;<br> }<br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/2646#264616Answer by Pat for What is your solution to the FizzBuzz problem?Pat2008-08-05T18:13:38Z2008-10-12T12:35:35Z<p>From the Perl monks ( modified to take advantage of Perl 5.10's "say" :-)</p>
<pre>say+(Fizz)[$_%3].(Buzz)[$_%5]||$_ for 1..100</pre>
<p>44 chars.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/2651#26511Answer by lbrandy for What is your solution to the FizzBuzz problem?lbrandy2008-08-05T18:19:16Z2008-08-05T18:19:16Z<p><a href="http://beta.stackoverflow.com/questions/437/#2646" rel="nofollow">@Pat</a></p>
<p>I can't believe that works. I don't have a new enough version of perl to try it. It appears to contain some seriously hilariously auto-black-magic. Like I presume you have a list with 'fizz' that you are indexing based on the mod directly and this index is allowed to be out of range? </p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/3156#31562Answer by Pat for What is your solution to the FizzBuzz problem?Pat2008-08-06T08:15:27Z2008-10-12T12:34:06Z<p>@lbrandy</p>
<p>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.</p>
<pre>print+(Fizz)[$_%3].(Buzz)[$_%5]||$_,$/for 1..100</pre>
<p>You are right, when the index [$<em>%3] is zero the expresstion (Fizz)[$</em>%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.</p>
<p>@Michiel de Mare</p>
<p>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</p>
<pre>100.fb</pre>
<p>or even</p>
<pre>1.f</pre>
<p>Three chars of ruby code (not counting the monkeypatch :-)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/3968#39684Answer by Coincoin for What is your solution to the FizzBuzz problem?Coincoin2008-08-06T20:48:10Z2008-08-06T20:57:11Z<P>C#</P><PRE><CODE>for(int i=1;i<101;i++)
Console.Write("{0: 0;; }{1:;;Fizz}{2:;;Buzz}",i%3*i%5==0?0:i,i%3,i%5);
</CODE></PRE>
<P>92 mandatory characters</P>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4059#405910Answer by Jon Galloway for What is your solution to the FizzBuzz problem?Jon Galloway2008-08-06T22:16:08Z2008-08-07T19:51:07Z<p>MSIL:</p>
<pre><code>.assembly extern mscorlib {}<br>.assembly fizzbuzz {.ver 1:0:1:0}<br>.module fizzbuzz.exe<br>.method static void main() cil managed<br>{<br>.entrypoint<br>.maxstack 2<br>.locals init (<br>[0] int32 num,<br>[1] bool divisibleByThree,<br>[2] bool divisibleByFive)<br><br>//initialize counter<br>ldc.i4.1 <br>stloc.0 <br><br>br.s _checkEndCondition<br><br>_beginLoop: <br>//Check divisible by three<br>ldloc.0 <br>ldc.i4.3 <br>rem <br>ldc.i4.0 <br>ceq <br>stloc.1 <br><br>//Check divisible by five<br>ldloc.0 <br>ldc.i4.5 <br>rem <br>ldc.i4.0 <br>ceq <br>stloc.2 <br><br>//Check if not divisible by three or five<br>ldloc.1 <br>brtrue.s _checkDivisibleByThree<br>ldloc.2 <br>brtrue.s _checkDivisibleByThree<br><br>//Not divisible by three or five, write counter<br>ldloc.0 <br>call void [mscorlib]System.Console::WriteLine(int32)<br>br.s _incrementCounter<br><br>_checkDivisibleByThree: <br>ldloc.1 <br>brfalse.s _checkDivisibleByFive<br>ldstr "Fizz"<br>call void [mscorlib]System.Console::Write(string)<br><br>_checkDivisibleByFive:<br>ldloc.2 <br>brfalse.s _newLine<br>ldstr "Buzz"<br>call void [mscorlib]System.Console::Write(string)<br><br>_newLine:<br>call void [mscorlib]System.Console::WriteLine()<br><br>_incrementCounter: <br>ldloc.0 <br>ldc.i4.1 <br>add <br>stloc.0 <br><br>_checkEndCondition: ldloc.0 <br>ldc.i4.s 0x65<br>blt.s _beginLoop<br>ret <br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4159#41599Answer by Patrick for What is your solution to the FizzBuzz problem?Patrick2008-08-07T00:15:34Z2008-08-07T00:33:42Z<p>And now for something completely different, a solution in Befunge:</p>
<pre><code>1> :3%#v_"zzif",,,,v<br> v < <<br> >:5%#v_"zzub",,,,v<br> v < <<br> >::3%\5%*!#v_:. v<br> v**455:,*48< <<br> >-#v_@ <br> ^ +1< <br></code></pre>
<p>Give it a try on using this <a href="http://www.quirkster.com/js/befunge.html" rel="nofollow">online interpreter</a>.</p>
<p>Also, this isn't remotely optimized for space, but that's what the edit button's for. :)</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4292#42921Answer by Michiel de Mare for What is your solution to the FizzBuzz problem?Michiel de Mare2008-08-07T01:56:29Z2008-08-07T01:56:29Z<p>@Coincoin and Pat: You've set new records for C# and Perl! You should submit them to <a href="http://www.shinh.org/p.rb?FizzBuzz" rel="nofollow">http://www.shinh.org/p.rb?FizzBuzz</a> and become instantly famous!</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4295#429555Answer by Michael Stum for What is your solution to the FizzBuzz problem?Michael Stum2008-08-07T02:07:56Z2008-08-07T02:12:01Z<p>And another implementation in one of the <a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">underrated programming languages</a>, thanks to <a href="http://koizuka.nowa.jp/entry/146a3d3b33" rel="nofollow">some japanese people</a>. And yes, that <a href="http://img225.imageshack.us/img225/4416/bffizzbuzzlk5.jpg" rel="nofollow">actually works</a>, just tested it in <a href="http://4mhz.de/bfdev.html" rel="nofollow">an IDE</a>.</p>
<pre><code>>++++++++++[<++++++++++>-]>>>+++>+++++>+<<<<<<
[
>>>+
>- [<<+>>-]<<<+>[<[-]>>>+<<-]<[>>>+++>>[-]<<<<<- +++++++[>++++++++++<-]>.<+++++++[>+++++<-]>.<++++[>++++<-]>+..[-]<]>>
>>- [<<<+>>>-]<<<<+>[<[-]>>>>+<<<-]<[>>>>+++++>[-]<<<<<- +++++++++++[>++++++<-]>.<+++++++[>+++++++<-]>++.+++++..[-]<]>>
>>>
[-
<<<[<+>>>>+<<<-]<[>+<-]>>>>
[
>++++++++++<
[>-[>+>+<<-]>[<+>-] +>[<[-]>-]< [>>+<<<++++++++++>-]<<-]
>---------- >>>[<<<<+>>>>-] <<<<
>>>>>+> >>[-] <[>+<-] <[>+<-] <<<<< [>>>>>+<<<<<+] <
]
>>>>>
[ <++++++[>>++++++++<<-]>> . [-] >[<+>-] >[<+>-] <<<-]
<<<<<
]+
<<<<<
+++++++++++++.---.[-]
<-]
</code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4456#44565Answer by swartzrock for What is your solution to the FizzBuzz problem?swartzrock2008-08-07T06:21:26Z2008-08-07T06:21:26Z<p>Here's how I did it in Groovy (69 chars), but somehow someone did this in 57 chars:</p>
<pre><code>(1..100).each{s=(it%3?"":"fizz")+(it%5?"":"buzz");println s==""?it:s}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4585#45851Answer by Chris Jester-Young for What is your solution to the FizzBuzz problem?Chris Jester-Young2008-08-07T11:09:57Z2008-08-07T11:09:57Z<p>@Geocoin: If you're going to say "runtime speed", then say it like you mean it: using <code>endl</code> (write newline + force flush) is almost certain to make your program even more I/O-bound than it already is, and makes whatever other optimisations you have totally irrelevant.</p>
<p>Moral of the story: <code>cout << endl</code> is <em>not</em> the same as <code>cout << '\n'</code>. Only use <code>endl</code> if you actually require your output to be flushed at that point. Here's <a href="http://www.aristeia.com/Papers/C++ReportColumns/novdec95.pdf" rel="nofollow">an article</a> by Scott Meyers (author of the <em>Effective C++</em> series) that says it much better than I can. :-)</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4643#46438Answer by Creighton Hogg for What is your solution to the FizzBuzz problem?Creighton Hogg2008-08-07T12:35:52Z2008-08-07T12:35:52Z<p>Obligatory Haskell version.</p>
<pre><code>intToString i | i `mod` 3 && i `mod` 5 = "FizzBuzz"
| i `mod` 3 = "Fizz"
| i `mod` 5 = "Buzz"
| otherwise = show i
main = mapM_ (putStrLn . intToString) [1..100]
</code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4652#46521Answer by mreggen for What is your solution to the FizzBuzz problem?mreggen2008-08-07T12:42:57Z2008-08-07T12:42:57Z<p>Simple python:</p>
<pre><code>for i in range(1,101):<br> if (i % 5 == 0) and (i % 3 == 0):<br> print "FizzBuzz"<br> continue<br> if i % 3 == 0:<br> print "Fizz"<br> continue<br> if i % 5 == 0:<br> print "Buzz"<br> continue<br> print i<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/4927#49271Answer by Fred for What is your solution to the FizzBuzz problem?Fred2008-08-07T16:33:19Z2009-05-15T21:12:50Z<p>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:</p>
<pre><code>#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;
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/6393#63932Answer by Mark Renouf for What is your solution to the FizzBuzz problem?Mark Renouf2008-08-08T21:25:12Z2008-08-08T21:25:12Z<p>My <strong>Java</strong> version:</p>
<pre><code>import static java.lang.System.out;<br>public class FizzBuzz {<br> public static void main(String[] args) {<br> boolean a, b;<br> for (int i = 1; i <= 100; i++) {<br> if (a = (i % 3 == 0))<br> out.print("Fizz");<br> if (b = (i % 5 == 0))<br> out.print("Buzz");<br> if (!a && !b)<br> out.print(i);<br> out.println();<br> }<br> }<br>}<br></code></pre>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/6889#68891Answer by Andrew for What is your solution to the FizzBuzz problem?Andrew2008-08-09T19:52:14Z2008-08-09T19:52:14Z<p>I'm still waiting to see the COBOL implementation. :-)</p>http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/7744#77441Answer by Serge for What is your solution to the FizzBuzz problem?Serge2008-08-11T12:56:03Z2008-08-11T12:56:03Z<p><a href="http://codepad.org/fizzbuzz" rel="nofollow" title="Power-Coder">Here</a> is a bunch of solutions in different languages (C, C++, D, Haskell, Lua, OCaml, PHP ...)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/7784#77842Answer by AlexCuse for What is your solution to the FizzBuzz problem?AlexCuse2008-08-11T13:33:11Z2008-08-11T13:33:11Z<p>t-sql</p>
<pre><code>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
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/8041#80412Answer by Daniel J. Pritchett for What is your solution to the FizzBuzz problem?Daniel J. Pritchett2008-08-11T18:13:23Z2008-09-15T21:55:38Z<p>This answer isn't perfect in any one dimension, but I like:</p>
<ul>
<li>the fact that it has a very low cyclomatic complexity</li>
<li>that it is pretty readable</li>
<li>that it handles the most specific case first and the least specific case last.</li>
<li>that it explicitly handles the "FizzBuzz" case rather than implying it as an overlap of the Fizz and Buzz cases</li>
</ul>
<p>I'd love some criticism on this!</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/8555#85551Answer by kokos for What is your solution to the FizzBuzz problem?kokos2008-08-12T06:31:47Z2008-08-12T14:40:25Z<ol>
<li>Build the output string with any of the algorithms (that work) mentioned by the others </li>
<li>Copy the output string to your source code as a constant (too bad if you use Brainfuck)</li>
<li><p>Output the constant</p>
<p>var TheAnswerToFizzBuzz = '1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz 16 17 Fizz 19 Buzz Fizz 22 23 Fizz Buzz 26 Fizz 28 29 FizzBuzz 31 32 Fizz 34 Buzz Fizz 37 38 Fizz Buzz 41 Fizz 43 44 FizzBuzz 46 47 Fizz 49 Buzz Fizz 52 53 Fizz Buzz 56 Fizz 58 59 FizzBuzz 61 62 Fizz 64 Buzz Fizz 67 68 Fizz Buzz 71 Fizz 73 74 FizzBuzz 76 77 Fizz 79 Buzz Fizz 82 83 Fizz Buzz 86 Fizz 88 89 FizzBuzz 91 92 Fizz 94 Buzz Fizz 9798 Fizz Buzz' // could be wrong :) </p>
<p>print TheAnswerToFizzBuzz</p></li>
</ol>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/8560#856016Answer by Burton for What is your solution to the FizzBuzz problem?Burton2008-08-12T06:55:12Z2008-08-12T07:11:10Z<p>All of you people who are checking to see if the number is divisible by three AND that it is divisible by five will find it more concise to consider whether the number is divisible by fifteen. This isn't rocket surgery. And brevity is the soul of wit.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/9005#90051Answer by Alex Elder for What is your solution to the FizzBuzz problem?Alex Elder2008-08-12T16:02:23Z2008-08-12T16:06:25Z<p>I just thought I'd correct Mark's elegant C implementation. Excuse me for being a pedant, but it was only printing numbers 1 to 99. Fred's C solution, however, needs quite a bit of work. Fred, which C implementation supports the ``<strong><em>then</em></strong>'' keyword? </p>
<pre><code>/* Improvement on Mark's C solution */
#include <stdio.h>
#define p printf
int main() {
int i;
for (i = 1; i <= 100; ++i) {
(i % 3) == 0 ? p("%d=Fizz", i) : p("%d=", i);
(i % 5) == 0 ? p("Buzz\n") : p("\n");
}
return 0;
}
</code></pre>
<p>I'm quite sure that this is the first C solution in this thread that will compile and does almost exactly what was requested.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/10421#1042112Answer by Samir for What is your solution to the FizzBuzz problem?Samir2008-08-13T22:17:44Z2008-08-13T22:17:44Z<p>Here is my solution. It is written in 8051 assembly. You will need a 11.0592 MHz quart to run this thing :p</p>
<pre><code>;*** CONSTANTS ***
; divider1
; the first divider's value
divider1 equ 3d
;divider2
; the second devider's value
divider2 equ 5d
; limit
; the maximum value that the fizzbizz program can reach. Must be between 0 and 100
limit equ 100d
;*** CODE ***
; Code segment at 0
cseg at 0
ljmp start ; avoir interrupt vectors
org 0x100 ; and go to a safer place
start: ; a.k.a here.
;
mov scon,#0x52 ; set UART to 8,0,n
mov tmod,#0x20 ; Timer1: autoreload
mov th1,#0xfe ; speed: 9600 bps
setb tr1 ; start Timer1
mov dptr,#intro ; load the intro and...
call emit ; beem it!
mov r7,#0 ; set counter to 0
compute:
cjne r7,#limit,continue ; are we finished with counting to 100?
jmp rest_in_peace ; Yes... rest in peace.
continue:
call do_crlf ; go to next line
mov r4,#1 ; set the (r7%3)? flag
inc r7 ; counter++
mov b,#divider1 ;
mov a,r7 ; divide the counter by three
div ab ;
mov a,b ; and get the reminder
jz do_fizz ; if it is null, do a fizz :)
next:
mov b,#divider2 ;
mov a,r7 ; divide the counter by five
div ab ;
mov a,b ; and get the reminder
jz do_buzz ; if it is null, do a buzz :D
mov a,r4 ; did we do a fizz?
jz compute ; if yes, reume the loop
call write_number ; else, write the number
jmp compute ; and resume the loop
rest_in_peace:
clr tr1 ; Stop Timer1
jmp $ ; AM STONED!
; do_fizz
; gets: nothing
; returns: 0 in r4
; description:
; Beems a "Fizz" through the UART
do_fizz:
mov dptr,#fizz ; load the fizz
call emit ; then display it
mov r4,#0 ; and leave a message: "I was here"
jmp next ; then resume your normal activity
; do_buzz
; gets: nothing
; returns: nothing
; description:
; Beems a "Bizz" through the UART
do_buzz:
mov dptr,#buzz ; load the buzz
call emit ; then display it
jmp compute ; then resume the loop
; do_crlf
; gets: nothing
; returns: nothing
; description:
; Beems the Carriage return/Line feed controle caracters through the UART.
do_crlf:
mov dptr,#crlf ; load crlf
call emit ; then send it
ret ; and return
; emit
; gets: the adress of the message to display in dptr
; returns: nothing
; description:
; Beems an ASCIIZ message, stored in the code memory, through the UART.
emit:
mov r6,#0 ; initialize the index to 0
bc_1:
mov a,r6 ;
inc r6 ; load the pointed byte
movc a,@a+dptr ;
jz fin ; if zero then return
jnb ti,$ ; if the last transmission isn't over, stay in your place
mov sbuf,a ; and transmit!
clr ti ; and clear ti to get further notifications :p
jmp bc_1 ; end of the loop
fin:
ret ; return
; emit_id
; gets: the digit's value in A (must be between 0 and 9)
; returns: nothing
; description:
; Translates a one-digit-bcd value located in A into Ascii and the beems it through the
; UART.
emit_id:
mov r5,a
mov a,#'0'
add a,r5
jnb ti,$
mov sbuf,a
clr ti
ret
; write_numer
; gets: the number to display in r7
; returns: nothing
; description:
; Beems the Ascii representation of the number located in r7 through the UART. r7 must
; be between 0 and 99
write_number:
mov a,r7 ;
mov b,#10d ; divide the number by 10
div ab ;
jz write_l ; if it si less than 10 then just write the modulo
call emit_id ; else, write the result (because r7<100) :)
write_l:
mov a,b ; prepare the parameters
call emit_id ; and send the digit
ret ; then return
; *** STATIC DATA ***
; fizz
; type: Asciiz string
; description:
; containes the fizz message
fizz: db "Fizz",0
; buzz
; type: Asciiz string
; description:
; containes the buzz message
buzz: db "Buzz",0
; intro
; type: Asciiz string
; description:
; contains the intro message.
; P.S:
; intro shares it's Asciiz 0 with crlf, 3 code bytes of economy :)
intro: db "The FizzBuzz test"
; crlf:
; type: Asciiz string
; description:
; containes the crlf byte couple
; P.S:
; shares itself and it's Asciiz 0 with intro
crlf: db 10,13,0
; Bye Bye :)
end
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/10452#1045230Answer by James A. Rosen for What is your solution to the FizzBuzz problem?James A. Rosen2008-08-13T22:52:20Z2008-08-14T16:59:33Z<p>My <a href="http://www.dangermouse.net/esoteric/ook.html" rel="nofollow" title="excanvas">Ook.</a> is a bit rusty, and I don't have a compiler on hand to check it, but I believe this works:</p>
<pre><code>### FizzBuzz in Ook.
Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook?
Ook! Ook! Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook.
Ook. Ook.
Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook? Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook? Ook! Ook! Ook! Ook? Ook? Ook. Ook? Ook.
Ook. Ook. Ook. Ook? Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook? Ook? Ook. Ook! Ook? Ook! Ook!
Ook? Ook! Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook? Ook.
Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook?
Ook. Ook? Ook! Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook.
Ook? Ook. Ook! Ook! Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook!
Ook. Ook? Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook. Ook? Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook. Ook?
Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook? Ook. Ook. Ook! Ook. Ook! Ook.
Ook! Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook! Ook! Ook! Ook? Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook?
Ook. Ook? Ook. Ook? Ook! Ook! Ook? Ook!
Ook? Ook. Ook? Ook. Ook? Ook.
Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook? Ook? Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook!
Ook? Ook! Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook! Ook? Ook! Ook! Ook? Ook!
Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook! Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook. Ook? Ook.
Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook? Ook. Ook?
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook.
Ook! Ook! Ook? Ook! Ook. Ook? Ook. Ook. Ook. Ook. Ook! Ook. Ook. Ook.
Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook! Ook. Ook! Ook. Ook! Ook? Ook! Ook! Ook? Ook!
Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook?
Ook! Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook!
Ook? Ook! Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook!
Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook? Ook. Ook! Ook? Ook. Ook? Ook! Ook! Ook! Ook? Ook. Ook? Ook. Ook. Ook. Ook?
Ook. Ook. Ook? Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook?
Ook! Ook? Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook. Ook. Ook. Ook? Ook! Ook? Ook? Ook.
Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook. Ook?
Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook!
Ook! Ook! Ook! Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook? Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook!
Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook! Ook? Ook! Ook!
Ook? Ook! Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook!
Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook! Ook! Ook? Ook! Ook? Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook. Ook? Ook. Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook.
Ook. Ook. Ook? Ook! Ook? Ook. Ook? Ook! Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook?
Ook. Ook? Ook! Ook? Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook? Ook. Ook? Ook.
Ook! Ook! Ook? Ook!
Ook. Ook? Ook. Ook? Ook! Ook. Ook! Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook?
Ook? Ook. Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook. Ook? Ook! Ook? Ook? Ook.
Ook. Ook. Ook. Ook? Ook! Ook! Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook! Ook!
Ook? Ook! Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook.
Ook? Ook. Ook? Ook! Ook. Ook.
Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook. Ook? Ook.
Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook. Ook.
Ook. Ook. Ook. Ook. Ook! Ook. Ook! Ook! Ook! Ook! Ook! Ook! Ook! Ook. Ook! Ook?
Ook! Ook! Ook? Ook! Ook? Ook. Ook! Ook! Ook? Ook!
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/11409#114091Answer by BCS for What is your solution to the FizzBuzz problem?BCS2008-08-14T17:45:05Z2008-08-14T17:50:31Z<pre><code>int main()
{
int i;
for(i=1;i<=100;i++)
printf({"%d\n", "Fizz", "Buzz", "FizzBuzz"}[(!(i%3))+2*!(1%5)],i);
return 0;
}
</code></pre>
<p>That's C but with 2 edits it also works in D or with an include, C++</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/12803#128033Answer by Jon Ericson for What is your solution to the FizzBuzz problem?Jon Ericson2008-08-15T21:47:59Z2008-08-15T21:47:59Z<p>I happened to be using this exercise to learn Lua: </p>
<pre><code>for n=1,100 do
if n%3==0 and n%5==0 then
print("FizzBuzz")
elseif n%3==0 then
print("Fizz")
elseif n%5==0 then
print("Buzz")
else
print(n)
end
end
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/13028#130287Answer by 18hrs for What is your solution to the FizzBuzz problem?18hrs2008-08-16T06:50:06Z2008-08-16T06:50:06Z<p>GWBASIC. And Of course, using GOTO statements was mandatory.<p></p>
<pre>
10
20 FOR i=1 TO 100
30 IF (i MOD 3 = 0 )AND (i MOD 5 = 0) THEN GOTO 70
40 IF (i MOD 3 = 0 ) THEN GOTO 90
50 IF (i MOD 5 = 0 ) THEN GOTO 110
60 GOTO 120
70 PRINT "FizzBuzz"
80 GOTO 120
90 PRINT "Fizz"
100 GOTO 120
110 PRINT "Buzz"
120 NEXT i
</pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/13320#133202Answer by Michał Piaskowski for What is your solution to the FizzBuzz problem?Michał Piaskowski2008-08-16T19:59:12Z2008-08-16T19:59:12Z<p>A C version, that does not use division or modulus:</p>
<pre>
#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;
}
</pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/14111#141114Answer by slipsec for What is your solution to the FizzBuzz problem?slipsec2008-08-18T02:44:19Z2008-08-18T02:44:19Z<p>Powershell:</p>
<pre><code>0..100 | %{
if (!($_ % 3)){
if(!($_ % 5)){"FizzBuzz"}
"Fizz"
}elseif(!($_ % 5)){"Buzz"}
else{$_}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/16620#166203Answer by Chuck for What is your solution to the FizzBuzz problem?Chuck2008-08-19T17:50:33Z2008-08-19T18:15:08Z<p>Another JavaScript solution (110 characters) :)</p>
<pre><code>f='Fizz';b='Buzz';for(i=1;i<101;i++){sOut=(i%15==0)?f+b:((i%3==0)?f:((i%5==0)?b:i));document.write(sOut+" ");}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/16626#166261Answer by Thomas Owens for What is your solution to the FizzBuzz problem?Thomas Owens2008-08-19T17:54:02Z2008-08-19T17:54:02Z<pre><code>for every integer 1 to 100
if the integer is divisible by 3
print "Fizz"
end if
if the integer is divisible by 5
print "Buzz"
end if
print newline
end for
</code></pre>
<p>I believe this also works, and it's simpler than the pseudocode given in the currently accepted answer.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/16640#166400Answer by Nick Berardi for What is your solution to the FizzBuzz problem?Nick Berardi2008-08-19T18:06:12Z2008-08-19T18:12:01Z<p>Here is Fizz Buzz in IL:</p>
<pre><code>.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
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/16645#166451Answer by Nick Berardi for What is your solution to the FizzBuzz problem?Nick Berardi2008-08-19T18:08:12Z2008-08-19T18:08:12Z<p>Here is Fizz Buzz in Chrome</p>
<pre><code>method GlobalApplication.FizzBuzz;
begin
var i: Int32 := 1;
while (i <= 100) do begin
var fizz: Boolean := ((i mod 3) = 0);
var buzz: Boolean := ((i mod 5) = 0);
if fizz then
Console.WriteLine('Fizz');
if buzz then
Console.WriteLine('Buzz');
if not (fizz or buzz) then
Console.WriteLine(i);
inc(i)
end
end;
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/16649#166491Answer by Nick Berardi for What is your solution to the FizzBuzz problem?Nick Berardi2008-08-19T18:09:19Z2008-08-19T18:09:19Z<p>Here is my version in C#</p>
<pre><code>public void FizzBuzz()
{
for (int i = 1; i <= 100; i++)
{
bool fizz = (i % 3) == 0;
bool buzz = (i % 5) == 0;
if (fizz)
{
Console.WriteLine("Fizz");
}
if (buzz)
{
Console.WriteLine("Buzz");
}
if (!(fizz || buzz))
{
Console.WriteLine(i);
}
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/16741#167411Answer by SemiColon for What is your solution to the FizzBuzz problem?SemiColon2008-08-19T18:57:49Z2008-08-19T18:57:49Z<pre><code>using System;
class FizzBuzz
{
static void Main(string args[])
{
for(int i = 1; i <= 100; i++)
{
if(i % 15 == 0) Console.WriteLine("Fizz Buzz");
else if(i % 3 == 0) Console.WriteLine("Fizz");
else if(i % 5 == 0) Console.WriteLine("Buzz");
else Console.WriteLine(i);
}
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/17497#174971Answer by David HAust for What is your solution to the FizzBuzz problem?David HAust2008-08-20T07:03:40Z2008-08-20T07:03:40Z<p>C# Version. Nothing new, just yet another variation. </p>
<pre><code>String output;
for (int i=1;i<=100;i++)
{
output = (i % 3 == 0) ? "Fizz" : "";
output = (i % 5 == 0) ? output + "Buzz" : output;
if (output.Equals("")) output = i.ToString();
Response.Write(output + "<br />");
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/17814#178141Answer by Skizz for What is your solution to the FizzBuzz problem?Skizz2008-08-20T12:09:13Z2008-08-20T12:09:13Z<p>Ok, first post on the site.
A C++ version, obfuscated of course, with some preprocessor trickery as well.</p>
<pre><code>#include <iostream>
#define d(a,z) a z
#define _(a,z) d(#z,#a)
#define b(b) _(b,b)
#define i _(i,f)c
#define u _(u,b)c
#define c b(z)
void main()
{
char t[4];int j=0x30490610;
for(*(int*)t=48;t[2]?0:t[1]?++t[1]==58?t[1]=48,++t[0]==58?t[0]=49,t[1]=t[2]=48:1:1:++t[0]==58?t[0]=49,t[1]=48:1;j=(j>>2)??!((j&3)<<28))std::cout<<(j&3?j&1?j&2?i u:i:u:t)<<'\n';
}
</code></pre>
<p>There's also no division or modulo nor conversion from integer to string.</p>
<p>Built using DevStudio 2005.</p>
<p>Skizz</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/19706#197064Answer by seanyboy for What is your solution to the FizzBuzz problem?seanyboy2008-08-21T12:18:05Z2008-08-21T12:18:05Z<p>Here it is in Dataflex. (<em>Why did I get to have to program in the unknown language</em>)</p>
<pre><code>procedure fizzBuzz
integer i
for i from 1 to 100
if (mod(i,15)) eq 0 showln "fizzbuzz"
else if (mod(i,3)) eq 0 showln "fizz"
else if (mod(i,5)) eq 0 showln "buzz"
else showln i
loop
end_procedure
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/21239#212396Answer by tghw for What is your solution to the FizzBuzz problem?tghw2008-08-21T21:35:38Z2008-08-21T21:35:38Z<p>Python, using list comprehension and the new <code>x if ... else y</code> convention.</p>
<blockquote>
<p><code>["FizzBuzz" if (n % 15 == 0) else "Fizz" if (n % 3 == 0) else "Buzz" if (n % 5 == 0) else n for n in range(1,101)]</code></p>
</blockquote>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/21251#2125138Answer by Lasse V. Karlsen for What is your solution to the FizzBuzz problem?Lasse V. Karlsen2008-08-21T21:42:33Z2009-10-08T20:06:05Z<p>A python solution that uses neither division nor modulus:</p>
<pre><code>def div3():
while True:
yield ""
yield ""
yield "Fizz"
def div5():
while True:
yield ""
yield ""
yield ""
yield ""
yield "Buzz"
data = zip(div3(), div5(), range(1, 101))
for (fizz, buzz, value) in data:
print fizz + buzz or value
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/21328#2132868Answer by Webjedi for What is your solution to the FizzBuzz problem?Webjedi2008-08-21T22:12:43Z2008-08-21T22:12:43Z<p>Don't forget lolcode...<a href="http://lolcode.com/contributions/cheezburger-fizzbuzz" rel="nofollow"><a href="http://lolcode.com/contributions/cheezburger-fizzbuzz" rel="nofollow">http://lolcode.com/contributions/cheezburger-fizzbuzz</a></a></p>
<p>(Not My Code)</p>
<p>For the clicky impaired:</p>
<pre><code>HAI
BTW LOL I HAS A FIZZBUZZ EXAMPLE
CAN HAS STDIO?
I HAS A NUMBAR
LOL NUMBAR R 0
I HAS A MACKSIMUM
LOL MACKSIMUM R 100
IM IN YR LOOPZ
LOL NUMBAR R NUMBAR UP 1
I HAS A NUMBAR_IZ_CHEEZ
LOL NUMBAR_IZ_CHEEZ R 0
I HAS A NUMBAR_IZ_BURGER
LOL NUMBAR_IZ_BURGER R 0
I HAS A COUNTAR
LOL COUNTAR R 0
I HAS A MAX_COUNTAR
LOL MAX_COUNTAR R NUMBAR OVAR 3
IM IN YR LOOP
LOL COUNTAR R COUNTAR UP 1
BTW I CHECKIN FOR CHEEZ LOL
I HAS A CHEEZ_NUMBAR
LOL CHEEZ_NUMBAR R COUNTAR TIEMZ 3
IZ CHEEZ_NUMBAR LIEK NUMBAR?
YARLY
LOL NUMBAR_IZ_CHEEZ R 1
KTHX
BTW I CHECKIN FOR BURGER LOL
I HAS A BURGER_NUMBAR
LOL BURGER_NUMBAR R COUNTAR TIEMZ 5
IZ BURGER_NUMBAR LIEK NUMBAR?
YARLY
LOL NUMBAR_IZ_BURGER R 1
KTHX
IZ COUNTAR BIGR THAN MAX_COUNTAR?
YARLY
GTFO
KTHX
KTHX
IZ NUMBAR_IZ_CHEEZ LIEK 1 AND NUMBAR_IZ_BURGER LIEK 1?
YARLY
VISIBLE "CHEEZBURGER"
NOWAI
IZ NUMBAR_IZ_CHEEZ LIEK 1?
YARLY
VISIBLE "CHEEZ"
NOWAI
IZ NUMBAR_IZ_BURGER LIEK 1?
YARLY
VISIBLE "BURGER"
NOWAI
VISIBLE NUMBAR
KTHX
KTHX
KTHX
IZ NUMBAR UP 1 BIGR THAN MACKSIMUM?
YARLY
GTFO
KTHX
KTHX
KTHXBYE
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/22815#228151Answer by da_code_monkey for What is your solution to the FizzBuzz problem?da_code_monkey2008-08-22T16:38:50Z2008-08-22T16:38:50Z<p>My version with QBASIC:</p>
<pre><code>FOR i = 1 TO 100
skip = 0
IF i MOD 3 = 0 THEN
PRINT "Fizz";
skip = 1
END IF
IF i MOD 5 = 0 THEN
PRINT "Buzz";
skip = 1
END IF
IF skip = 0 THEN PRINT i;
PRINT
NEXT i
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/22841#228414Answer by Bryan Woods for What is your solution to the FizzBuzz problem?Bryan Woods2008-08-22T16:49:40Z2008-08-22T16:49:40Z<p>Ruby:</p>
<pre><code>require 'rubygems'
require 'fizzbuzz'
puts fizzbuzz
</code></pre>
<p>:-D</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/23855#238553Answer by Rob for What is your solution to the FizzBuzz problem?Rob2008-08-23T02:12:53Z2008-08-23T02:12:53Z<p>Since nobody has done anything with a graphing calculator yet, here's my version in <a href="http://en.wikipedia.org/wiki/TI-BASIC" rel="nofollow">TI-BASIC</a>. This was written on a TI-83 Plus graphing calculator which doesn't have a modulus operation built in, hence the use of the fPart function.</p>
<pre><code>:For(X,1,100
:1->A
:If 0=3*fPart(X/3:3->A
:If 0=5*fPart(X/5:5A->A
:If A=1:Disp X
:If A=3:Disp "FIZZ
:If A=5:Disp "BUZZ
:If A=15:Disp "FIZZBUZZ
:End
</code></pre>
<p>If I am counting them right, the total symbols should be 93. Note that the TI-83 stores some of the program symbols such as "For(" as a single symbol even though it is displayed as four characters.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/23917#239171Answer by James A. Rosen for What is your solution to the FizzBuzz problem?James A. Rosen2008-08-23T03:21:34Z2008-08-23T03:21:34Z<p>Or, wearing my software manager hat, my solution would be this:</p>
<p>"Hey, Johnny, can I see you for a second?"</p>
<p>:: Johnny enters ::</p>
<p>"Yes?"</p>
<p>"Go solve FizzBuzz for me, wouldja? You can charge the time to code #94921.228."</p>
<p>or, better yet, just enter a bug into FogBugz:</p>
<p>"FizzBuzz implementation is empty"</p>
<p>and assign it to Johnny.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/23952#239521Answer by Imran for What is your solution to the FizzBuzz problem?Imran2008-08-23T04:05:48Z2008-08-23T04:17:14Z<p><strong>PHP 1 liner</strong></p>
<pre><code><?php while (++$i <= 100) echo (!($i % 15) ? "fizzbuzz" : (!($i % 3) ? "fizz" : (!($i % 5) ? "buzz" : $i))) . "\n"; ?>
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/26298#262981Answer by Fencliff for What is your solution to the FizzBuzz problem?Fencliff2008-08-25T15:53:47Z2008-08-27T14:23:23Z<p>Classic VB, 85 chars without white space:</p>
<pre><code>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
</code></pre>
<p>Yeah, pretty lame.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/26335#263352Answer by braklet for What is your solution to the FizzBuzz problem?braklet2008-08-25T16:18:48Z2008-08-25T16:18:48Z<p>Tcl: (assumes <em>$limit</em> is the upper bound you want to count to)</p>
<pre><code>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
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/30272#302722Answer by SQLMenace for What is your solution to the FizzBuzz problem?SQLMenace2008-08-27T14:26:01Z2008-08-27T14:26:01Z<p>SQL Server</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/32755#327551Answer by spook327 for What is your solution to the FizzBuzz problem?spook3272008-08-28T16:41:00Z2008-08-28T16:41:00Z<p>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"; }'</p>
<p>Works, but could probably stand more obfuscation.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/33652#336522Answer by kronoz for What is your solution to the FizzBuzz problem?kronoz2008-08-28T23:36:32Z2008-08-30T00:46:10Z<p>An F# solution is as follows:-</p>
<p><strong>Edit:</strong> Modified to compile under F# 1.9.6.0 latest CTP.</p>
<pre>
#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")
</pre>
<p>For some reason the context highlighter seems to go crazy with this one so I used pre tags instead!</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/33705#3370521Answer by AgentConundrum for What is your solution to the FizzBuzz problem?AgentConundrum2008-08-29T00:35:33Z2008-08-29T00:35:33Z<p>Sorry. I couldn't resist.</p>
<pre>
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
.
</pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/34620#346204Answer by Nathan for What is your solution to the FizzBuzz problem?Nathan2008-08-29T16:21:36Z2008-08-29T16:21:36Z<p>A short solution, in C:</p>
<pre><code>main(i)
{
for(; i < 101; puts(i++ % 5 ? "" : "Buzz"))
printf(i % 3 ? i % 5 ? "%d" : "" : "Fizz", i);
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/35629#356293Answer by privatehuff for What is your solution to the FizzBuzz problem?privatehuff2008-08-30T02:58:05Z2008-08-30T02:58:05Z<pre><code>
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.
</code></pre>
<p><hr /></p>
<p>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.</p>
<p>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)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/37420#374201Answer by Chris Jester-Young for What is your solution to the FizzBuzz problem?Chris Jester-Young2008-09-01T03:30:19Z2009-06-24T13:02:46Z<p>This is my version in IA-32 assembly. <a href="http://nasm.sourceforge.net/" rel="nofollow">NASM</a> syntax. Linux only.</p>
<p>(NB: This version is deliberately jump-avoidant. For a more jumpy version, see <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/37448#37448">my next version</a>.)</p>
<p>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!</p>
<pre><code>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
</code></pre>
<p>To build, use:</p>
<pre><code>nasm -Ox -f elf fizzbuzz.asm
ld -s -m elf_i386 fizzbuzz.o
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/37448#374482Answer by Chris Jester-Young for What is your solution to the FizzBuzz problem?Chris Jester-Young2008-09-01T04:18:51Z2009-06-24T13:01:58Z<p>This is a much more jump-happy version of <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/37420#37420">my last submission</a>. On the upside, the object code size is reduced by 14 bytes, mostly by using <code>lea</code> (3 bytes) instead of constant register moves (5 bytes). (e.g., <code>mov edx, 5</code> gets translated into <code>lea edx, [ebx + 4]</code>, with the understanding that <code>ebx</code> is always fixed at 1.)</p>
<p>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, <code>edx</code>'s top bits are never set, and <code>[edi]</code> < <code>[ebp]</code> < <code>[esp + 4]</code> in code size.</p>
<p>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 <code>.bss</code> instead of the stack, but using additional sections adds bulk to the executable elsewhere, resulting in a net disadvantage.</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/44447#444471Answer by DrFloyd5 for What is your solution to the FizzBuzz problem?DrFloyd52008-09-04T18:44:50Z2008-09-04T18:44:50Z<p>ok, my 0.02$</p>
<pre><code>for(int i=0;i<100;i++) printf(((!i%3)+(!i%5))?((!i%3)?"Fizz":"")+((!i%5)?"Buzz":"":i));
</code></pre>
<p>It's not pretty and it needs documentation, but it's fun!</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/44491#444912Answer by JosephStyons for What is your solution to the FizzBuzz problem?JosephStyons2008-09-04T19:01:04Z2008-09-04T19:01:04Z<p>In Delphi (complete command-line program):</p>
<pre><code>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.
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47499#474992Answer by shsteimer for What is your solution to the FizzBuzz problem?shsteimer2008-09-06T14:33:59Z2008-09-06T15:54:34Z<p>I can think of no reason why you want to, but here's a recursive solution in java:</p>
<pre><code>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);
}
}
}
</code></pre>
<p>Also, if I do fizzBuzz(5702) I get a java.lang.StackOverflowError. :-)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47582#475821Answer by billpg for What is your solution to the FizzBuzz problem?billpg2008-09-06T15:43:39Z2008-09-06T15:43:39Z<p>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.</p>
<p>Because the source code is zero bytes, <strong>it wins</strong>.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47691#476911Answer by J.F. Sebastian for What is your solution to the FizzBuzz problem?J.F. Sebastian2008-09-06T17:54:01Z2008-09-06T17:54:01Z<p>D (Digital Mars):</p>
<pre><code>#!/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));
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47751#477515Answer by Don Wakefield for What is your solution to the FizzBuzz problem?Don Wakefield2008-09-06T19:15:01Z2008-09-06T19:15:01Z<p>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. ;^)</p>
<p>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:</p>
<pre><code>//////////////////////////////////////////////////////////////////////
//
// 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;
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47772#477721Answer by Jeremy Banks for What is your solution to the FizzBuzz problem?Jeremy Banks2008-09-06T19:50:02Z2008-09-06T19:50:02Z<p>I'm not very good at golf. Here's <code>74</code> characters in Python:</p>
<pre><code>for n in range(1,101):print(""if n%3 else"Fizz")+(""if n%5 else"Buzz")or n
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47821#478212Answer by warren for What is your solution to the FizzBuzz problem?warren2008-09-06T20:44:53Z2008-09-06T20:44:53Z<p>C++</p>
<pre><code>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;
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/47881#478812Answer by paperhorse for What is your solution to the FizzBuzz problem?paperhorse2008-09-06T22:22:26Z2008-09-06T22:22:26Z<p>Here is another C version which avoids divisions and remainders<p>
<pre><code>
#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;
}
</code></pre><p>
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).</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/48334#48334101Answer by gabr for What is your solution to the FizzBuzz problem?gabr2008-09-07T11:29:27Z2008-09-07T11:29:27Z<p>You people tend to complicate things a lot, huh?</p>
<pre><code>@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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/48722#487228Answer by Omer van Kloeten for What is your solution to the FizzBuzz problem?Omer van Kloeten2008-09-07T19:51:25Z2008-09-07T19:51:25Z<p>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):</p>
<pre><code>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
</code></pre>
<p>SO really needs right-to-left support for this kind of stuff :)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/63372#633721Answer by dsm for What is your solution to the FizzBuzz problem?dsm2008-09-15T14:24:15Z2008-09-15T15:53:39Z<p>The obligatory lisp answer:</p>
<pre><code>(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)))))
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/63481#634810Answer by Farrel for What is your solution to the FizzBuzz problem?Farrel2008-09-15T14:38:25Z2008-09-15T14:38:25Z<p>Using the new Proc#=== in Ruby 1.9:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/65048#6504810Answer by Apocalisp for What is your solution to the FizzBuzz problem?Apocalisp2008-09-15T17:45:35Z2009-09-17T01:14:48Z<p>Anybody can write a oneliner FizzBuzz, but can you generalize it?</p>
<p>Here's a general FizzBuzz module in Haskell:</p>
<pre><code>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) ""
</code></pre>
<p>Here's a sample run:</p>
<pre><code>*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"]
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/65492#6549217Answer by blackwing for What is your solution to the FizzBuzz problem?blackwing2008-09-15T18:37:11Z2008-09-15T18:37:11Z<p>Not as weird as some entries but here is a rather unusual python version:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/66109#661092Answer by Keith for What is your solution to the FizzBuzz problem?Keith2008-09-15T19:43:01Z2008-09-15T19:43:01Z<p>Fortran. It has been compiled and run under GNU Fortran, but should work on Fortran 77.</p>
<p><hr /></p>
<pre><code>*-------------------------------------------------------------------------------
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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/66914#669141Answer by hexten for What is your solution to the FizzBuzz problem?hexten2008-09-15T20:59:51Z2008-09-15T20:59:51Z<p>Here it is in 6502 code (BBC Basic Assembler):</p>
<pre><code> 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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/71718#717181Answer by Edward Funnekotter for What is your solution to the FizzBuzz problem?Edward Funnekotter2008-09-16T12:29:46Z2008-10-09T13:50:25Z<p>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:</p>
<pre><code>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) }
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/73131#731311Answer by dsm for What is your solution to the FizzBuzz problem?dsm2008-09-16T14:47:00Z2008-09-17T09:51:33Z<p>Reply to <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem#65048">this post</a> here is my generalized version:</p>
<pre><code>(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)))))))
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/77886#778862Answer by clahey for What is your solution to the FizzBuzz problem?clahey2008-09-16T22:21:15Z2008-09-16T22:21:15Z<p>Here's a smaller befunge version. 14x7. I would edit Patrick's, but I don't have enough reputation.</p>
<pre><code>1>::3%: #v_v
v,,:,,"fiz">#<
>\5%: #v_v
v,,:,,"buz">#<
>\*! #v_:.v
v5:,*25< <
v>54**-!#@_1+
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/84935#849350Answer by tucuxi for What is your solution to the FizzBuzz problem?tucuxi2008-09-17T16:16:31Z2008-09-17T16:16:31Z<p>Yet another C version (77 chars). People at <a href="http://www.shinh.org/l.rb?c" rel="nofollow" title="search for fizzbuzz">anarchy golf</a> have managed to bring it down to 73, but as a newbie golfer I can't find any more corners to cut. Ideas?</p>
<pre><code>main(i){while(i<101)printf(i%3?i%5?"%d":"":"Fizz",i)|puts(i++%5?"":"Buzz");}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/87581#875811Answer by Eclipse for What is your solution to the FizzBuzz problem?Eclipse2008-09-17T20:56:06Z2008-09-17T20:56:06Z<p>It's the second batch file version, but it's a little more in the spirit of things:</p>
<pre><code>@echo off
set i=1
:start
call :test %i%
set /a i=%i%+1
if %i%==101 goto :eof
goto :start
:test
set /a modVal3=%1%%3
set /a modVal5=%1%%5
if %modVal3%%modVal5%==00 (
echo FizzBuzz
) else if %modVal3%==0 (
echo Fizz
) else if %modVal5%==0 (
echo Buzz
) else (
echo %1%
)
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/91068#9106846Answer by ysth for What is your solution to the FizzBuzz problem?ysth2008-09-18T09:01:59Z2008-09-18T09:01:59Z<p>Here's a long, yet golfed, perl solution:</p>
<pre><code>( (
''))=~('('.'?'.'{'.("\`"|
'%').('['^'-').('`'|'!').
('`'|',').'"'.('['^'+').(
(( (
( ((
( ((
'[' ))))
)))))^(')')).(
'`'|"\)").(
( (
'`'))|'.').('['^
'/').'+'.('(').(
'`'^'&').(('`')|
((
((
')'))
))).+(
"\["^
( (
'!'))).('['^'!') .')'
.'['.'\\'.('$'). '_'.
'%'.('^'^(('`')| ((
( (
'-')))))).(']').
'.'.'('.('`'^'"'
).('['^'.').('['
^
((
((
'!'))))).(('[')^
'!').')'.('[').
'\\'.'$'.'_'
.
'%'.('^'^('`'|'+'
)).']'.'|'.'|'.'\\'.
'$'.'_'.','.'\\'.'$'
.+ (
((
(
(
(
(
(
'/')))))))).(
(
(
(
'`')))|
'&').('`'|"\/").(
'['^')').('{'^'[').('^'
^('`'|'/' ))."\.".
(( '.'
) )
. (
'^'^('`'|'/')).('^'^(('`')|
'.')).('^'^('`'|'.')).('!'^
( ( (
( ( (
( (
( (
'+' )
))))) )
)
))
).'"'
. (
'}').')');$:='.' ^'~'
;$~='@'|"\(";$^= ')'^
'[';$/='`'|"\."; $,
='('
^+ '}'
;($\) =(
('`'))| (
( "\!")); (
( $:))=')' ^
( '}');$~=
( '*')|
(( ((
'`')
)));
$^ =((
'+')) ^+
'_';$/= (
( "\&"))| (
( '@'));$, =
( '[')&'~'
; ($\)=
(( ((
',')
)))^ '|';
$:=('.')^ "\~";$~=
'@'|'(';$^=')'^"\[";$/=
'`'|'.';$,='('
^'}';$\
='`'|'!';$:="\)"^
'}';$~='*'|'`';$^="\+"^
('_');$/= '&'|'@';
$, =((
( "\[")))&
(( ('~')));$\=
(( ','))^ '|'
; ($:)= ((
'.'))^'~';$~='@'|'(';$^="\)"^
( '['); (
( $/))= (
'`')|'.';$,='('^'}';$\=('`')|
(( '!') )
;$:= (')')^ (
('}'));$~= (
(
(
(
(
(
(
(
(
( ((
'*') )) ))
))) ) )
))| ( (
'`' ));$^=
'+' ^((
(( (( '_'
) )))
) ) ;$/
='&'| '@'
;$, =
'[' &+
(( ((
( (
( (
( (( (
'~' )))))) )))
)));( ($\)) =','^"\|";
$:='.'^"\~"; $~="\@"|
"\(";$^=
')'^ '[';
$/=('`')| "\.";$,=
'('^'}';$\='`'|"\!";$:=
')'^'}';$~='*'
|+
'`';
($^)
=('+')^
'_';$/='&'|'@';$,
='['&'~';$\=','^'|';$:=
'.'^"\~"; $~="\@"|
(( '('
) )
; (
$^)=')'^'[';$/='`'|"\.";$,=
'('^'}';$\='`'|'!';$:="\)"^
( ( (
( ( (
( ( (
( ( (
( '}' ))
)) )))) )))
));( $~)= '*'|'`';$^
='+'^"\_";$/= '&'|'@';
$,='['&'~' ;$\=
"\,"^
(
'|');$:=('.')^
'~';$~='@'|"\(";
$^=')'^('[');$/=
((
((
(
'`')))))|'.';$,=
'('^'}';$\="\`"|
'!';$:=')'^"\}";
($~)
=( '*'
)|'`' ;(
$^)='+' ^
( '_');$/ =
( '&')|'@' ;
( $,)='['&
( '~');
$\ =(
',')
^'|'
;( $:)
='.'^ ((
"\~")); (
( ($~)))= (
( ('@')))| (
( '('));$^
= "\)"^
(( ((
'[')
))); ($/)
='`'|'.'; $,="\("^
'}';$\='`'|'!';$:="\)"^
'}';$~='*'|'`'
;$^='+'
^'_';$/='&'|"\@";
$,='['&'~';$\=','^"\|";
$:=('.')^ "\~";$~=
(( '@'
) )|'(';$^
=( ')')^'[';$/
=( "\`")| '.'
; ($,)= ((
'('))^'}';$\='`'|'!';$:="\)"^
( '}'); (
( $~))= (
'*')|'`';$^='+'^'_';$/=('&')|
(( '@') )
;$,= ('[')& (
('~'));$\= (
(
(
(
(
(
(
(
(
( ((
',') )) ))
))) ) )
))^ ( (
'|' ));$:=
'.' ^((
(( (( '~'
) )))
) ) ;$~
='@'| '('
;( ($^))=
(( ( (')'))))^
( (( '[')
) ); ($/)
= (( '`')
)| '.' ;$,=
"\("^ '}';$\ ='`'
|'!';$:=')'^'}' ;$~=
'*'|'`';$^= '+'^
'_'; ($/)
='&'|'@'; $,="\["&
'~';$\=','^'|';$:="\."^
'~';$~='@'|'('
;( ($^))=
')'^ '[';$/='`'|('.');$,=
'('^ '}';$\='`'|"\!";
$: ="\)"^
'}'; $~='*'|'`';$^=('+')^
'_'; $/='&'|('@');$,=
( '[')&'~'
;( $\)=','^'|'
;( ($:))= '.'
^ "\~"; $~
='@'|'(';$^=')'^'[';$/=('`')|
( '.'); (
( $,))= (
'(')^'}';$\='`'|'!';$:=(')')^
(( '}') )
;$~= ('*')| (
('`'));$^= (
(
(
(
(
(
(
(
(
((
'+')
))))))
) )))^'_';
$/ ='&'|'@';$,
=( "\[")& '~'
; ($\)= ((
','))^'|';$:='.'^'~';$~="\@"|
( '('); (
( $^))= (
')')^'[';$/='`'|'.';$,=('(')^
(( '}') )
;$\= ('`')| (
('!'));$:= (
(
')')
)^+
'}'
;$~
=((
'*'
))|
'`'
;$^
=
'+'^'_';$/='&'|"\@";$,=
'['&'~';$\=','^'|';$:='.'^
'~';$~='@'|'(';$^=')'^"\[";
( $/ )
= ('`')|
"\.";
($,)=
'('^'}';$\=
'`'|'!';$:=')'
^+ ((
( (
( (
( ((
'}') ))))
))));$~='*'|
"\`";$^=
( (
'+'))^'_';$/='&'
|'@';$,='['&'~';
$\=','^('|');$:=
((
((
'.'))
))^'~'
;($~)
=
( (
'@'))|'(';$^=')'^'[';$/=
'`'|'.';$,='('^'}';$\='`'
|
(
((
'!')
));(
$:
)=((
')')
)
^ (
'}');$~='*'|'`';$^="\+"^
'_';$/='&'|'@';$,='['&'~'
;
(
$\)="\,"^
'|';$:='.'^'~';$~=
'@'|'(';$^=')'^'[';$/=
"\`"| "\.";
$, =(
( (
( (
(( '('
))))) ))^((
'}'));$\='`'|('!');$:=
')'^'}';$~="\*"|
('`');$^=
'+'^'_';$/='&'|'@'
;$,='['&'~';$\=','^'|'
;($:) ='.'^
(( ((
( (
( (
(( '~'
))))) )))))
;$~='@'|'(';$^=')'^'['
;$/='`'|"\.";#;#
</code></pre>
<p>I'm kind of astounded that markdown doesn't have spoiler tags that would have conserved that vertical space...</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/92470#924700Answer by Porges for What is your solution to the FizzBuzz problem?Porges2008-09-18T13:21:29Z2008-09-18T13:31:55Z<p>Here's one I did a while ago in Haskell (generalized & should run very quick -- no arithmetic is performed after the initial setup):</p>
<pre><code>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")] (++)
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/92644#9264414Answer by David B for What is your solution to the FizzBuzz problem?David B2008-09-18T13:44:06Z2008-09-18T13:44:06Z<p>C# and LINQ? Why not...</p>
<pre><code>Enumerable
.Range(1, 100)
.Select(i =>
i % 15 == 0 ? "FizzBuzz" :
i % 5 == 0 ? "Buzz" :
i % 3 == 0 ? "Fizz" :
i.ToString())
.ToList()
.ForEach(s => Console.WriteLine(s));
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/124095#1240951Answer by Andrea Ambu for What is your solution to the FizzBuzz problem?Andrea Ambu2008-09-23T21:45:35Z2008-09-23T21:45:35Z<p>Omg. It seems a challenge :P
Readable version, in python :-)</p>
<pre><code>for n in xrange(1,101):
s = ''
if n%3 == 0: s += 'Fizz'
if n%5 == 0: s += 'Buzz'
if s == '': s = n
print s
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/124446#1244461Answer by slim for What is your solution to the FizzBuzz problem?slim2008-09-23T22:56:53Z2008-09-23T22:56:53Z<p>WebMethods Flow.</p>
<p>To be fair, WM lets you write services in Java, but I challenged myself to do FizzBuzz in their Flow doodleware, and to only use the available built-in services.</p>
<p><a href="http://www.flickr.com/photos/hartnupj/2883671400/" rel="nofollow" title="FizzBuzz in WebMethods Flow by ukslim, on Flickr"><img src="http://farm4.static.flickr.com/3070/2883671400_11de7699ec_o.jpg" width="650" height="449" alt="FizzBuzz in WebMethods Flow" /></a></p>
<p>I couldn't find a built in modulus operator, so rather than dividing, multiplying then comparing with the original, I used three counters.</p>
<p>"Unfortunately" you can't see all of the logic - you'd have to click around the UI to see where everything is hidden.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/124485#1244851Answer by gbarry for What is your solution to the FizzBuzz problem?gbarry2008-09-23T23:06:08Z2008-10-17T19:16:21Z<pre>
\ 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
</pre>
<p>Am I the last of my kind?<P></p>
<p>Sorry to confess: <br>
- I never heard of FizzBuzz until Joel told me about it.<br>
- Aftewards, actually went and did this.<br>
- It's FORTH.<br></p>
<p><hr /></p>
<p>It occurred to me to show this again, but in its
more renowned "compressed-write-only-no-comments-no-factoring" version.</p>
<pre>
: 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
</pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/124895#1248951Answer by bk1e for What is your solution to the FizzBuzz problem?bk1e2008-09-24T01:30:54Z2008-09-24T01:30:54Z<p>Here's another batch file version (requires Windows 2000 or later). </p>
<pre><code>@echo off
setlocal
call :f 1 %%%%i
call :f 3 Fizz
call :f 5 Buzz
call :f 15 FizzBuzz
for /l %%i in (1,1,100) do call echo %%f%%i%%
endlocal
goto :eof
:f
for /l %%i in (%1,%1,100) do set f%%i=%2
goto :eof
</code></pre>
<p>I'm truly sorry.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/158740#1587401Answer by Gustavo Carreno for What is your solution to the FizzBuzz problem?Gustavo Carreno2008-10-01T17:29:13Z2008-10-01T17:29:13Z<p>PHP with switch. </p>
<p>I always thought that this switch evaluation rocks, but probably it's just me hating the if's and loving the switch</p>
<pre><code><?php
foreach(range(0,99) as $number) {
switch(0) {
case $number % 15:
echo "fizzbuzz";
break;
case $number % 5:
echo "fizz";
break;
case $number % 3:
echo "buzz";
break;
default:
echo $number;
break;
}
echo "\n";
}
?>
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/164341#1643413Answer by Eclipse for What is your solution to the FizzBuzz problem?Eclipse2008-10-02T20:13:26Z2008-10-02T20:13:26Z<p>C++ version without any runtime conditional branches:</p>
<pre><code>#include <iostream>
#include <sstream>
using namespace std;
inline string stringify(int x)
{
ostringstream o;
o << x;
return o.str();
}
template <int N>
struct Enumerator
{
typedef Enumerator<N-1> Prev;
enum {FizzMod = N%3, BuzzMod = N % 5, };
static string FizzBuzz()
{
return Prev::FizzBuzz() + (FizzMod ? string("") : "Fizz") + (BuzzMod ? "" : "Buzz") + ((FizzMod && BuzzMod) ? stringify(N) : "") + "\n";
}
};
template <>
struct Enumerator<0>
{
static string FizzBuzz()
{
return "";
}
};
int main()
{
string fizzBuzz = Enumerator<100>::FizzBuzz();
cout << fizzBuzz;
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/170679#1706791Answer by cmcculloh for What is your solution to the FizzBuzz problem?cmcculloh2008-10-04T17:19:14Z2008-10-04T17:19:14Z<p>Ok, here's a recursive solution based on <a href="http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem#577">my JavaScript solution</a>. Just another variant...</p>
<pre><code>var output = fizzBuzz(1, 100);
function fizzBuzz(i, max){
var fizz = (i % 3 == 0);
var buzz = (i % 5 == 0);
var tmpOutput = "";
if(!fizz && !buzz){
tmpOutput = i;
}else{
if(fizz){
tmpOutput = "Fizz";
}
if(buzz){
tmpOutput += "Buzz";
}
}
tmpOutput += "<br />";
if(i < max){
i++;
tmpOutput += fizzBuzz(i, max);
}
return tmpOutput;
}
document.write(output);
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/204196#2041961Answer by Gregory Higley for What is your solution to the FizzBuzz problem?Gregory Higley2008-10-15T09:52:57Z2008-10-15T10:04:24Z<p>In REBOL:</p>
<pre><code>ifmod: func [a n] [either (mod a n) = 0 [n] [0]]
for a 1 100 1 [
print switch (ifmod a 5) + (ifmod a 3) [
8 ["FizzBuzz"]
5 ["Buzz"]
3 ["Fizz"]
0 [a]
]
]
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/204238#2042381Answer by Sklivvz for What is your solution to the FizzBuzz problem?Sklivvz2008-10-15T10:14:05Z2008-10-15T10:14:05Z<p>A bit of unrolling and math (Pseudocode):</p>
<pre><code>for i = 1..100
switch i % 15
case 0:
print FizzBuzz
break
case 3:
case 6:
case 9:
case 12:
print Fizz
break
case 5:
case 10:
print Buzz
break
default:
print i
break
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/207010#2070102Answer by for What is your solution to the FizzBuzz problem?2008-10-16T00:27:14Z2008-10-16T01:31:48Z<p>C++:</p>
<pre><code>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);</code></pre>
<p>C++ Second Example:</p>
<pre><code>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++));</code></pre>
<p>Modula-2:</p>
<pre><code>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.</code></pre>
<p>ADA:</p>
<pre><code>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;</code></pre>
<p>WinBatch (yeah, I know... but I couldn't pass it up):</p>
<pre><code>@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
</code></pre>
<p>I have too much time on my hands :D</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/207068#2070685Answer by Barry Brown for What is your solution to the FizzBuzz problem?Barry Brown2008-10-16T00:58:31Z2008-10-16T00:58:31Z<p>In C:</p>
<pre><code>F
</code></pre>
<p>Compile with:</p>
<pre><code>gcc -DF='main(){int i;for(i=0;i<101;puts(i++%5?"":"Buzz"))printf(i%3?i%5?"%d":"":"Fizz",i);}' fizzbuzz.c
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/207151#2071513Answer by Greg Beech for What is your solution to the FizzBuzz problem?Greg Beech2008-10-16T01:41:39Z2008-10-16T01:41:39Z<p>Ah what the heck - here's a C# version using list comprehensions:</p>
<pre><code>(from i in Enumerable.Range(1, 100)
let fizz = i % 3 == 0 ? "Fizz" : null
let buzz = i % 5 == 0 ? "Buzz" : null
let fizzBuzz = fizz + buzz
select fizzBuzz != string.Empty ? fizzBuzz : i.ToString())
.ToList().ForEach(Console.WriteLine);
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/207182#2071821Answer by Clayton for What is your solution to the FizzBuzz problem?Clayton2008-10-16T02:00:49Z2008-10-16T02:00:49Z<p>57 Chars in MUMPS:</p>
<p>F I=1:1:100 S A=I#3,B=I#5 W:A&B I W:'A "Fizz" W:'B "Buzz"</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/209446#2094461Answer by Nate for What is your solution to the FizzBuzz problem?Nate2008-10-16T17:04:19Z2008-10-16T17:04:19Z<p>In <a href="http://caml.inria.fr/" rel="nofollow">OCaml</a>:</p>
<pre><code>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));;
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/209536#2095361Answer by jim for What is your solution to the FizzBuzz problem?jim2008-10-16T17:33:29Z2008-10-16T17:33:29Z<p>Oracle SQL (precondition table with 1 - 100)</p>
<pre><code>select decode(mod(id,3),0, decode(mod(id,5),0,'fizzbuzz','fizz'), decode(mod(id,5),0,'buzz,id)) from fizzbuzz
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/240268#2402682Answer by Danko Durbić for What is your solution to the FizzBuzz problem?Danko Durbić2008-10-27T15:18:56Z2008-10-27T15:18:56Z<p>In <a href="http://www.r-project.org/" rel="nofollow">R</a>:</p>
<pre><code>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' )
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/246428#2464281Answer by AlexJReid for What is your solution to the FizzBuzz problem?AlexJReid2008-10-29T11:09:25Z2008-10-29T11:09:25Z<p>T-SQL with no predefined tables. Maybe a little verbose!</p>
<pre><code>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;
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/251167#2511671Answer by Danko Durbić for What is your solution to the FizzBuzz problem?Danko Durbić2008-10-30T18:06:06Z2008-10-31T09:00:50Z<p>Here's an XSLT version. The file has a styelsheet reference to itself, so you can open it in IE and see the output: </p>
<p>fb.xml:</p>
<pre><code><?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>
</code></pre>
<p>EDIT: No need for two files (.xml and .xslt). </p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/402066#4020662Answer by Berk D. Demir for What is your solution to the FizzBuzz problem?Berk D. Demir2008-12-31T01:50:01Z2008-12-31T14:02:40Z<p>A short, efficient and easier to read Ruby version.</p>
<pre><code>#!/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
</code></pre>
<p>(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.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/402282#4022821Answer by vg1890 for What is your solution to the FizzBuzz problem?vg18902008-12-31T04:08:10Z2008-12-31T04:08:10Z<p>In UniBasic:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/402731#4027311Answer by Øyvind Skaar for What is your solution to the FizzBuzz problem?Øyvind Skaar2008-12-31T10:58:11Z2008-12-31T10:58:11Z<p>Here is an <strong>XSLT</strong> version.</p>
<pre><code><?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>
</code></pre>
<p>Or much smaller in a function:</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/403611#4036111Answer by kwako for What is your solution to the FizzBuzz problem?kwako2008-12-31T17:49:26Z2008-12-31T17:49:26Z<p>The shortest I could do with php (70 characters):</p>
<pre><code><?php while($i++<100)echo($i%15?$i%3?$i%5?$i:Buzz:Fizz:FizzBuzz)."\n";
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/404818#4048181Answer by tuinstoel for What is your solution to the FizzBuzz problem?tuinstoel2009-01-01T10:12:31Z2009-01-01T10:12:31Z<p>Oracle SQL</p>
<pre><code>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
/
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/422415#4224153Answer by Federico Ramponi for What is your solution to the FizzBuzz problem?Federico Ramponi2009-01-07T22:21:06Z2009-01-09T23:49:34Z<p>Never reinvent the wheel - </p>
<pre><code>import urllib, re
fbregexp = re.compile(".*<pre><code>@echo off([0-9a-zA-Z \n]+)</code></pre>", re.DOTALL)
wf = urllib.urlopen("http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem")
match = fbregexp.match(wf.read())
wf.close()
if match:
print ''.join(match.group(1).split("echo ")).strip()
else:
print "Unable to fetch fizzbuzz data."
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/461315#4613151Answer by Chooh for What is your solution to the FizzBuzz problem?Chooh2009-01-20T13:43:31Z2009-01-20T13:43:31Z<p>Erlang</p>
<pre><code>-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).
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/479527#4795271Answer by Andrei Rinea for What is your solution to the FizzBuzz problem?Andrei Rinea2009-01-26T11:49:34Z2009-01-26T11:49:34Z<p>Not really amazing that the switch version is the fastest...</p>
<pre><code> // 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);
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/479650#4796504Answer by Thomas for What is your solution to the FizzBuzz problem?Thomas2009-01-26T12:34:59Z2009-01-26T12:34:59Z<p>C#:</p>
<pre><code> static void Main(string[] args)
{
string[] vals ={"FizzBuzz", "{0}", "{0}", "Fizz", "{0}",
"Buzz", "Fizz", "{0}", "{0}", "Fizz",
"Buzz", "{0}", "Fizz", "{0}", "{0}" };
for (int i = 1; i <= 100; i++)
{
Console.WriteLine(vals[i % 15], i);
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/510387#5103871Answer by Rob Boek for What is your solution to the FizzBuzz problem?Rob Boek2009-02-04T07:23:56Z2009-02-04T07:23:56Z<p>T-SQL</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/592820#5928202Answer by Bryan for What is your solution to the FizzBuzz problem?Bryan2009-02-26T22:54:55Z2009-02-26T22:54:55Z<p>Obfuscated ColdFusion Script
Just for the fun of it. Shoot me or any of my developers if we ever did this.</p>
<pre><code>function d(n){return chr(inputbasen(n,16));}function f(){writeoutput(d('66')&d('69')&d('7a')&d('7a'));}function b(){writeoutput(d('62')&d('75')&d('7a')&d('7a'));}function r(){writeoutput(d('3c')&d('62')&d('72')&d('3e'));}function m(v){h=v mod 3;n=v mod 9;t=v;if(h AND n){writeoutput(v);r();return;}if(not h)f();if(not n)b();r();}for(x=1;x lte 100;x++){m(x);}
</code></pre>
<p>Oh, forgot to say I give this test to all my programmer and DBA applicants. and our requirement is mod 3 and mod 9, with a web output. Thus the output of <br> tags. For you CF haters, yes, it's do-able in much smaller code. :P</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/593002#5930021Answer by for What is your solution to the FizzBuzz problem?2009-02-26T23:44:34Z2009-02-26T23:44:34Z<p>My attempt in Java, it seems to work!</p>
<pre><code>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();
}
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/849029#8490292Answer by Dan for What is your solution to the FizzBuzz problem?Dan2009-05-11T16:57:14Z2009-05-11T16:57:14Z<p>Factor version. Can probably be made cleaner, clearer and shorter, but I'm still a Factor n00b, so...</p>
<pre><code>! Check is a number is divisible by another number
: divisible ( n m -- ? ) mod 0 = ;
! Output a string only if a number is divisible by another and keep the boolean result
: write-if-divisible ( string n m -- ? )
divisible? dup -rot ! Is 'n' divisible by 'm'?
[ write ] [ drop ] if ; ! If yes print string, otheriwse drop it
! Fizzbuzz procedure
: fizzbuzz ( -- )
100 [ ! 100 iterations
1 + dup ! Start at 1 and keep two copies
[ 3 "Fizz" -rot write-if-divisible ] ! Write "Fizz" if divisible by 3
[ 5 "Buzz" -rot write-if-divisible ] bi or ! Write "Buzz" if divisible by 5
[ "" print drop ] [ . ] if ! If divisible by either number print newline otherwise print number
] each ;
</code></pre>
<p>Maybe someone can improve this for me?</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/934662#9346621Answer by Christopher Klein for What is your solution to the FizzBuzz problem?Christopher Klein2009-06-01T12:41:23Z2009-06-01T12:41:23Z<pre><code>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);
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/947313#9473131Answer by Tim for What is your solution to the FizzBuzz problem?Tim2009-06-03T21:20:04Z2009-06-03T21:25:52Z<p>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)?</p>
<p>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.</p>
<pre><code>/* 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;
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/961228#9612281Answer by Chi for What is your solution to the FizzBuzz problem?Chi2009-06-07T04:54:59Z2009-06-07T04:54:59Z<p>Scala:</p>
<pre><code>(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))
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/961269#9612691Answer by TM for What is your solution to the FizzBuzz problem?TM2009-06-07T05:32:31Z2009-06-07T05:32:31Z<p>Simple, easy answer in python:</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1038543#10385431Answer by Kuroki Kaze for What is your solution to the FizzBuzz problem?Kuroki Kaze2009-06-24T13:55:56Z2009-06-24T13:55:56Z<p>PHP, 85 symbols:</p>
<pre><code>while($i<100){$i++;echo($i%15)?($i%3)?($i%5)?$i."\n":"buzz\n":"fizz\n":"fizzbuzz\n";}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1050223#10502231Answer by huitseeker for What is your solution to the FizzBuzz problem?huitseeker2009-06-26T17:18:13Z2009-06-26T17:18:13Z<p>In <a href="http://caml.inria.fr/ocaml/index.en.html" rel="nofollow">Ocaml</a>.</p>
<pre><code>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;;
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1050622#10506221Answer by Nicolas Dorier for What is your solution to the FizzBuzz problem?Nicolas Dorier2009-06-26T18:49:41Z2009-06-26T19:18:11Z<p><strong>C# 3.5 Code generation with CodeDom : 1 statement</strong></p>
<pre><code>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] { });
}
}
</code></pre>
<p><strong>C# 3.5 Code generation with CodeDom multi statement version :</strong></p>
<pre><code>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();
}
}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1053543#10535431Answer by Todd Gardner for What is your solution to the FizzBuzz problem?Todd Gardner2009-06-27T20:26:17Z2009-06-27T20:26:17Z<p>Didn't see any C++0x + STL solutions, so I decided to ridiculously over-engineer one:</p>
<pre><code>#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());
}
</code></pre>
<p>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 :)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1053956#10539560Answer by Isaac Waller for What is your solution to the FizzBuzz problem?Isaac Waller2009-06-28T00:49:12Z2009-06-28T00:49:12Z<p>Java, 130 characters:</p>
<pre><code>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);}}}
</code></pre>
<p>Now, this is kinda cheating, because when you run it at the end it will say:</p>
<pre><code>Exception in thread "main" java.lang.NoSuchMethodError: main
</code></pre>
<p>But it still works....</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1064724#10647240Answer by Shadowsdream for What is your solution to the FizzBuzz problem?Shadowsdream2009-06-30T16:39:44Z2009-06-30T16:39:44Z<p>Yet Another T-SQL Variation (hadn't seen this one yet):</p>
<pre><code>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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1064757#10647571Answer by Shadowsdream for What is your solution to the FizzBuzz problem?Shadowsdream2009-06-30T16:46:15Z2009-06-30T16:46:15Z<p>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.</p>
<pre><code>--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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1064830#10648300Answer by reinierpost for What is your solution to the FizzBuzz problem?reinierpost2009-06-30T17:03:00Z2009-06-30T17:08:38Z<p>Perl:</p>
<pre><code>#!/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";
}
</code></pre>
<p>As a one-liner:</p>
<pre><code>perl -e 'print $_%15?$_%5?$_%3?$_:"Fizz":"Buzz":"FizzBuzz","\n"for(1..100)'
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1071676#10716761Answer by Mike Robinson for What is your solution to the FizzBuzz problem?Mike Robinson2009-07-01T22:31:16Z2009-07-01T22:31:16Z<p><strong>Javascript</strong> (66 characters):</p>
<pre><code>for(var i=1;i<101;i++){alert((i%3?"":"fizz")+(i%5?"":"buzz")||i)};
</code></pre>
<p><em>Warning: Switch alert() to console.log() unless you've got a lot of time to spare</em></p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1097452#10974521Answer by cobbal for What is your solution to the FizzBuzz problem?cobbal2009-07-08T11:22:33Z2009-07-08T11:22:33Z<p>because golf and <a href="http://jsoftware.com" rel="nofollow">J</a> are fun:</p>
<pre><code>> (((0 = 3 | ]) + 2 * 0 = 5 | ]) { ('Fizz'([ ; ] ; ,)'Buzz') ;~ ":)"0 >: i.100
</code></pre>
<p>55 characters with spaces removed, although I'm sure there's room for improvement.</p>
<pre><code>(((0 = 3 | ]) + 2 * 0 = 5 | ]) { ('Fizz'([ ; ] ; ,)'Buzz') ;~ ])"0 >: i.100
</code></pre>
<p>53 if you don't mind boxed format</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1097492#10974920Answer by JRL for What is your solution to the FizzBuzz problem?JRL2009-07-08T11:33:56Z2009-07-08T11:33:56Z<p>Another Java solution, <strong>without cheating</strong> but with a couple of shorcuts (130 chars):</p>
<pre><code>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"));}}
</code></pre>
<p>By using the same cheat as Isaac (runs but you get exception), you can get it down to 102 chars:</p>
<pre><code>class J{static{for(int i=0;i++<100;)System.out.println((i%3>0?"":"fizz")+(i%5>0?i%3>0?i:"":"buzz"));}}
</code></pre>
<p>By really cheating, 68 chars:</p>
<pre><code>class C{public static void main(String[]a){System.out.print(a[0]);}}
</code></pre>
<p>and passing "1 2 fizz 4 buzz ..." on the command line ;-)</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1354618#13546180Answer by Kenneth Reitz for What is your solution to the FizzBuzz problem?Kenneth Reitz2009-08-30T18:55:55Z2009-08-30T18:55:55Z<p>Easiest solution is in python:</p>
<pre>
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()
</pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1367821#13678210Answer by Marcus Andrén for What is your solution to the FizzBuzz problem?Marcus Andrén2009-09-02T13:50:20Z2009-09-02T13:50:20Z<p>Of course, in C# you should use a simple linq one liner for something like this</p>
<pre><code>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());
</code></pre>
<p>For anyone wondering what it actually does, here is the basic method without inlining of help methods</p>
<pre><code>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());
</code></pre>
<p>where GetFizzBuzzValues works like this</p>
<pre><code>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());
}
</code></pre>
<p>Finally replace Utility.Primes() and Utility.PositiveNumbers with these two rows.</p>
<pre><code>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)
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1436353#14363530Answer by GameFreak for What is your solution to the FizzBuzz problem?GameFreak2009-09-17T01:45:25Z2009-09-17T01:45:25Z<p>TI-BASIC:</p>
<pre><code>: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
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1469457#14694571Answer by nilamo for What is your solution to the FizzBuzz problem?nilamo2009-09-24T01:56:58Z2009-09-24T02:37:04Z<p>Clojure. Golfing: 168 chars.</p>
<pre><code>(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))))))
</code></pre>
<p>To be called as such: <code>($ n)</code></p>
<p>And now legible:</p>
<pre><code>(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))))))
</code></pre>
<p>To be called like so: <code>(fizzbuzz n)</code></p>
<p>Could probably be shorter, but I'm still learning the language.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1517164#15171640Answer by Ether for What is your solution to the FizzBuzz problem?Ether2009-10-04T19:17:16Z2009-10-28T17:53:55Z<p>In Perl:</p>
<pre><code>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";
}
</code></pre>
<p>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 (<code>for ($i = 1; $i <= 100; $i++)</code>, if-blocks with indentation (i.e. <code>if (blah) { stuff }</code> rather than <code>stuff if blah</code>), etc).</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1545492#15454921Answer by gwell for What is your solution to the FizzBuzz problem?gwell2009-10-09T18:55:56Z2009-10-09T20:35:21Z<p>Here is a one liner in Lua (95 characters):</p>
<pre><code>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
</code></pre>
<p><hr /></p>
<p>(EDIT) And here is the generalized version:</p>
<pre><code>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"}}
</code></pre>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/1664630#16646304Answer by Laura for What is your solution to the FizzBuzz problem?Laura2009-11-03T00:56:08Z2009-11-03T00:56:08Z<p>Note: this is just for my C practice. I am just thrilled it even works :)</p>
<pre><code>main()
{
int i;
for (i = 1; i <= 100; i++)
{
if (
(i % 3 == 0) && (!(i % 5 == 0))
)
{ printf ("Fizz\n");
continue;
}
else if (
(i % 3 != 0) && (i % 5 == 0 )
)
{ printf ("Buzz\n");
continue;
}
else if (
(i % 3 == 0) && (i % 5 == 0)
)
{ printf ("FizzBuzz\n");
continue;
}
else if (
(!(i % 3 ==0)) && (!(i % 5 == 0))
)
{ printf ("%d\n", i);
continue;
}
}
system("PAUSE");
return 0;
}
</code></pre>