9.0a: Loop Challenges
Last updated
Last updated
Create a for loop that prints the numbers 500 through 525.
Create a for loop that prints the numbers from 0-100 by 5's
Create a for loop that prints the numbers 1-100 to the console. If the # is divisible by 3, print Fizz
instead of the number, if it's divisible by 5, print Buzz
, if it's divisible by both 3 and 5, print FizzBuzz