Question: Write a method called digitSum that accepts an integer as a parameter and returns the sum of the digits of that number. For example, the

Write a method called digitSum that accepts an integer as a parameter and returns the sum of the digits of that number. For example, the call digitSum(29107) returns 2 + 9 + 1 + 0 + 7 or 19. For negative numbers, return the same value that would result if the number were positive. For example, digitSum(-456) returns 4 + 5 + 6 or 15. The call digitSum(0) returns 0.

Step by Step Solution

3.39 Rating (158 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

public static int digitsum int n ... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Building Java Programs A Back to Basics Approach Questions!