(5 XP) A function that checks if a number is divisible by 5.
- Fork this repository to your GitHub account.
- Open solution file in Visual Studio.
- Open file
Calculator.cs
. - Implement the method
DivisibleByFive(int number)
that checks if a number is divisible by 5. - Run with
CTRL+F5
to test it. - If all tests are passed, commit & sync your repository.
- Send a link to your repository for Lab Master (in #slack) to check it.
DivisibleByFive(5) ➞ true
DivisibleByFive(-55) ➞ true
DivisibleByFive(37) ➞ false