This application prints numbers from 1 to 100 and changes the text based on user input.
YOU get to select a FIZZY number and a BUZZY number.
Parameters of the project:
- Write a program that prints the numbers from 1 to 100.
- For multiples of three, print "fizz" instead of the number.
- For multiples of five, print "Buzz" instead of the number.
- For multiples of both, print "fizzBuzz" instead of the number.
Additional Functionality:
- The program has been modified by leveraging the "template" HTML tag to make it more dynamic.
- The program allows the user to enter two integers and prints the appropriate result based on multiples of the inputs.
Check it out!