โ Back to If Statements
Question 369
Divisible by Both 2 and 3
Divisible by Both 2 and 3
Read an integern. Ifnis divisible by BOTH 2 and 3, printYes; otherwise printNo. For example, given the input12, the program prints: Yes Use the&&operator to combine the two conditions.
Expected Output:
Yes
Topics:
If Statements
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.