FizzBuzz

Turning a seemingly trivial problem to a challenging one.

Ryan Chou
Level Up Coding
Published in
3 min readJul 19, 2021

--

The concept of FizzBuzz is really simple.

Write a program which prints every number from one to one hundred, but:

  • If you encounter a number which is divisible by 3, print Fizz.
  • If you encounter a number which is divisible by 5, print Buzz.

--

--