Problem 42406. Divisible by 4
Pursuant to the first problem in this series, this one involves checking for divisibility by 4.
Write a function to determine if a number is divisible by 4. This can be checked by a few slightly different methods:
- Check the last two digits for divisibility by four.
 - From the wikipedia reference page: "If the tens digit is even, the ones digit must be 0, 4, or 8. If the tens digit is odd, the ones digit must be 2 or 6."
 - Check the following sum for divisibility by four: twice the tens digit plus the ones digit.
 
Previous problem: divisible by 3. Next problem: divisible by 5.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers361
Suggested Problems
- 
         
Project Euler: Problem 3, Largest prime factor
1640 Solvers
 - 
         
         
430 Solvers
 - 
         
There are 10 types of people in the world
1223 Solvers
 - 
         
find the surface area of a cube
552 Solvers
 - 
         
         
10781 Solvers
 
More from this Author139
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!