Problem 56283. Determine if Input is Oddish or Evenish (Odd/Even Sum of Digits)
Given a positive integer n, determine whether n is "oddish" or "evenish" - that is, whether the sum of the digits of n is odd or even. Return 1 for odd(ish), 2 for even(ish).
oe = oddorevendigitsum(34093)
oe =
     1
oe = oddorevendigitsum(39482)
oe =
     2
In the first example, 3+4+0+9+3 = 19, which is odd. In the second, 3+9+4+8+2 = 26, which is even.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers312
Suggested Problems
- 
         Determine Whether an array is empty 794 Solvers 
- 
         Circular Primes (based on Project Euler, problem 35) 580 Solvers 
- 
         
         5731 Solvers 
- 
         
         333 Solvers 
- 
         Coefficient of Static friction 267 Solvers 
More from this Author22
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!