โ Back to If Statements
Question 334
Multiple of 10 (Input)
Multiple of 10 (Input)
Read anintcallednumberfrom standard input. Ifnumberis a multiple of10(number % 10 == 0), printYes, multiple of 10; otherwise printNot a multiple of 10. For the input40the output is: Yes, multiple of 10
Expected Output:
Yes, multiple of 10
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.