โ Back to If Statements
Question 327
Divisible by 3 (No Input)
Divisible by 3 (No Input)
Create anintvariable namednumberwith the value9. Use anifstatement to check whethernumberis divisible by3(that is,number % 3 == 0). If it is, print exactly this line: 9 is divisible by 3 UseSystem.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.