Welcome to Westonci.ca, the Q&A platform where your questions are met with detailed answers from experienced experts. Join our platform to connect with experts ready to provide precise answers to your questions in different areas. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A platform.

Write a program named FiveCheck that asks for an integer. Determine if the value is divisible by five and print that out.
Sample Output:
> \#Run \#1
Enter an integer: 10
The number you entered is divisible by 5 .
>\#Run \#2
Enter an integer: 100050468
The number you entered is not divisible by 5 .
NOTE: check out the modulus (\%) operator in our examples and the text.