Answer:
The method sumDigits() and the test program is given in the explanation section below:
Explanation:
import java.util.Scanner;
public class num8 {
public static int sumDigits(long n){
long sum = 0;
while (n != 0)
{
sum = sum + n % 10;
n = n/10;
}
return (int)sum;
}
public static void main(String[] args) {
System.out.println("Enter a long integer");
Scanner in = new Scanner(System.in);
long digit = in.nextLong();
System.out.println(sumDigits(digit));
}
}
The steps required to implement this method are given in the question. A while is used to repeatedly extract and remove the digit until all the digits are extracted. In the main method, the Scanner class is used to prompt a user to enter a digit, the method is called and the digit is passed as an argument.