FizzBuzz: A Coding Challenge
Given two values, display the numbers 1-100 (or another number of the user's choice). When a number is divisible by the first value, display Fizz instead. When a number is divisible by the second value, display Buzz instead. When a number is divisible by both values, display FizzBuzz.
Instructions
Enter a Fizz value, a Buzz value, and a Stop number. Then press the Go button. The numbers ranging from 1 to your Stop number will be displayed. Numbers will be colored differently, depending on if they are divisible by the Fizz value, Buzz value, or both.