Write a static method that is passed two integers and returns true
iff the first is evenly divisible by the second.
For example:
divisibilityChecker(50, 10)
returns true
divisibilityChecker(50, 9)
returns false
divisibilityChecker(8, 3)
returns false
divisibilityChecker(8, 8)
returns true
Preconditions:
0
.©2003–2016 Graham Mitchell
This assignment is licensed under a
Creative Commons Attribution-NonCommercial-ShareAlike 3.0 United States License.