Question: java pls asap Question 1 (5 points) Listen Note: for this question your program must compile and run. You may use an IDE of your
Question 1 (5 points) Listen Note: for this question your program must compile and run. You may use an IDE of your choice. Include in your answer the code, your integer choice that you entered when you ran the program and display the sum of its digits. For example: Enter the integer 25 sum of integer 25 digits is 7 Write a test program that prompts the user to enter an integer and displays the surts of its digits. You must write a recursive method that computes the sum of the digits in an integer and use the following method header: public static int sumDigits(long n) Example sumDigits(234) returns 2 + 3 + 4 = 9
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
