Write a program that contains two methods:
1. The isDivisible method of Lab 6.4
2. A method, boolean isEven(int n), that returns whether n is even or not
The isEven method must be written using isDivisible
(This is an example of method composition discussed in the notes)
Your main should prompt for the number, pass it to isEven, and print the result.