CJCoding With Joseph

Multiple of 10 (Input)

Read an int called number from standard input. If number is a multiple of 10 (number % 10 == 0), print Yes, multiple of 10; otherwise print Not a multiple of 10.

For the input 40 the output is:

Yes, multiple of 10

Expected Output:

Yes, multiple of 10
Topics:
If Statements
๐Ÿ“ฅ Auto-Input:
40\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 (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.