โ Back to If Statements
Question 347
FizzBuzz Single Number (Input)
FizzBuzz Single Number (Input)
Read anintcallednumberfrom standard input and apply FizzBuzz rules to that one number. If it is divisible by both3and5, printFizzBuzz. Otherwise, if divisible by3, printFizz. Otherwise, if divisible by5, printBuzz. Otherwise print the number itself. For the input15the output is: FizzBuzz
Expected Output:
FizzBuzz
Topics:
If Statements
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.