Post Made Community Wiki by Community
show/hide this revision's text 3 formatting

so this

This answer isn't perfect in any one dimension, but i I like:

  • the fact that it has a very low cyclomatic complexity
  • that it is pretty readable
  • that it handles the most specific case first and the least specific case last.
  • that it explicitly handles the "FizzBuzz" case rather than implying it as an overlap of the Fizz and Buzz cases

i'd

I'd love some criticism on this:D!

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
show/hide this revision's text 2

so this answer isn't perfect in any one dimension, but i like

  • the fact that it has a very low cyclomatic complexity,
  • that it is pretty readable, and
  • that it handles the most specific case first and the least specific case last.
  • that it explicitly handles the "FizzBuzz" case rather than implying it as an overlap of the Fizz and Buzz cases

i'd love some criticism on this :D

for each integer currentNum from 1 to 100 do
     if currentNum modulo 15 is 0 then
        print FizzBuzz
     'FizzBuzz'
     else if currentNum modulo 5 is 0 then 
        print Buzz
     'Buzz'
     else if currentNum modulo 3 is 0 then
        print Fizz
     'Fizz'
     else
        print currentNum
     endif
endfor
show/hide this revision's text 1