CJCoding With Joseph

Divisible by 3 (No Input)

Create an int variable named number with the value 9. Use an if statement to check whether number is divisible by 3 (that is, number % 3 == 0). If it is, print exactly this line:

9 is divisible by 3

Use System.out.println() with string concatenation.

Expected Output:

9 is divisible by 3
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.