โ Back to Loops
Question 67
Loop: FizzBuzz to Fifteen
Loop: FizzBuzz to Fifteen
Use a loop over the numbers 1 to 15. For each number print: - 'FizzBuzz' if it is divisible by both 3 and 5 - 'Fizz' if it is divisible by only 3 - 'Buzz' if it is divisible by only 5 - otherwise the number itself Print one value per line.
Expected Output:
1 2 Fizz 4 Buzz Fizz 7 8 Fizz Buzz 11 Fizz 13 14 FizzBuzz
Topics:
Loops
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (clog, fn, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.