CJCoding With Joseph

Divisible by 7 (No Input)

Create an int variable number set to 21. Use an if statement to check whether it is a multiple of 7 (number % 7 == 0). If it is, print exactly:

21 is a multiple of 7

Expected Output:

21 is a multiple of 7
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.