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.