Implement a Java program that plays the fizz buzz game for any possible number or series of numbers.
“Fizz buzz is a group word game for children to teach them about division. Players take turns to count incrementally, replacing any number divisible by three with the word "fizz", and any number divisible by five with the word "buzz".” – Wikipedia
Take into account the following expectations:
FizzBuzz
must have two characteristics: a starting and finishing number.fizzBuzz()
. This class will output the results of the FizzBuzz game between the starting and the finishing number.fizzBuzzOne()
main()
method.FizzBuzz - KX1