PatrickFrankAIU / ITWEB220-2404A

Learning resources for students in ITWEB 220, term 2404A.
0 stars 0 forks source link

Challenge: Fizzbuzz! #20

Open PatrickFrankAIU opened 3 months ago

PatrickFrankAIU commented 3 months ago

Fizzbuzz is a classic coding challenge and a staple of technical interviews. The game itself is a word game for children, and it works like this: The first player is given the starting value, such as "1". They mentally divide that number by both 3 and 5.

Our challenge here is to write a program that checks the integers from 1 to 50 and reports the appropriate response word -- Fizz, Buzz, or FizzBuzz.

Tips: