Pursuant to the first problem in this series, this one involves checking for divisibility by 8.
Write a function to determine if a number is divisible by 8. This can be done by the following method:
- Check the last three digits for divisibility by eight. If that portion of the number is divisible by eight, then so is the original number. That three-digit number can be further reduced by summing four times the hundreds digit, two times the tens digit, and the ones digit. As with methods for other numbers, this factor/sum step can be applied recursively until a single-digit number results.
Previous problem: divisible by 7. Next problem: divisible by 9.
Solution Stats
Problem Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers242
Suggested Problems
-
Is my wife right? Now with even more wrong husband
1339 Solvers
-
Reverse the elements of an array
1109 Solvers
-
Create an index-powered vector
933 Solvers
-
Matlab Basics II - Count rows in a matrix
403 Solvers
-
(Linear) Recurrence Equations - Generalised Fibonacci-like sequences
409 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!