CJCoding With Joseph

Divisible by 4 and 6

Read an integer with scanf. If it is divisible by BOTH 4 and 6 (no remainder for either), print exactly:

Yes

Otherwise print exactly:

No

No trailing newline. For input 24 the output is Yes; for input 8 the output is No (divisible by 4 but not by 6).

Expected Output:

Yes
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
24\n
This input is automatically fed to your program's stdin
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (p, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.