9.0a: Loop Challenges
Bronze
Create a for loop that prints the numbers 500 through 525.
Silver
Create a for loop that prints the numbers from 0-100 by 5's
Gold
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, printBuzz
, if it's divisible by both 3 and 5, printFizzBuzz
Last updated