Question: sumOfDigits is a static method that recieves an integer and returns the sum of its digits. For example, if the input integer is 3769, the
sumOfDigits is a static method that recieves an integer and returns the sum of its digits. For example, if the input integer is 3769, the value returned is (3+7+6+9)=25, and if the input was -3769 the value returned would be -25. Use a recursive algorithm to implement this method.
public static int sumOfDigits(int x){
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
