Just click start and then click the black dot. It will create a list from 1 to 100. Each multiple of 3 will be labeled Fizz and each multiple of 5 will be labeled Buzz. Numbers divisible by 3 and 5, such as 15 or 90, will be labeled FizzBuzz.
A novice attempt to program FizzBuzz. I am still learning how to use Scratch. It has been a great tool. A blogger mentioned that some companies asked their potential employees to write a quick program as part of the interview process. He used the example of FizzBuzz. The object of the program, as I read it, is to generate a list of numbers from 1 to 100 with all multiples of 3 being named Fizz, all multiples of 5 being named Buzz, and all multiples of 3 and 5 being named FizzBuzz. I read it quickly, so I could be wrong. Here is my solution. I would love to see a more efficient version or other takes on the project. Thanks.