CJCoding With Joseph

FizzBuzz Single Number (Input)

Read an int called number from standard input and apply FizzBuzz rules to that one number. If it is divisible by both 3 and 5, print FizzBuzz. Otherwise, if divisible by 3, print Fizz. Otherwise, if divisible by 5, print Buzz. Otherwise print the number itself.

For the input 15 the output is:

FizzBuzz

Expected Output:

FizzBuzz
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
15\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.