CJCoding With Joseph

Multiple of 7

Read an integer n. If n is a multiple of 7, print Yes; otherwise print No.

For example, given the input 21, the program prints:

Yes

A number is a multiple of 7 when the remainder after dividing by 7 is zero.

Expected Output:

Yes
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
21
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 (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.