Question: You may not use for or while. Any looping must be accomplished using recursion. Thank you. Part 1. Even digits up, odd digits down (30
You may not use for or while. Any looping must be accomplished using recursion. Thank you.

Part 1. Even digits up, odd digits down (30 pts) Implement the method public static long eduodd (long n). eduodd(n) returns a value which increases each of the even decimal digits of n by one and decreases each of the odd digits of n by one. Leading one digits will disappear. The sign of eduodd(n) should be the same as n, unless n is negative and eduodd(n) is zero as seen in the last example below. Please review the written practice recursion problems as seen in class. Table of examples: 27 36 987654321 -8443 896745230 -9552 11121113-11 30002 0 eduodd(n)1 0
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
