a game, algorithm and a common programming task of replacing any number divisible by three with the word "fizz", and any number divisible by five with the word "buzz"
Here's my code for Codecamedy's FizzBuzz lesson var i; for ( i = 1; i > 20; i++ ) { "hello" if ( i % 3 === 0 ) { if ( i % 5 === 0 ) { "FizzBuzz"; } …
javascript fizzbuzzSpoiler alert: I am a true novice. Tasked with figuring out fizz buzz in ruby for a class and while …
ruby fizzbuzzI'm doing this problem set "FizzBuzz", and my switch statement is giving me some problems, here's my code: func fizzBuzz(…
swift switch-statement fizzbuzz