Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Using jGrasp and the Software Development Kit, write a program in response to th

ID: 3568866 • Letter: U

Question

Using jGrasp and the Software Development Kit, write a program in response to the following prompt:

Write a program that prompts the user to input an integer and then outputs both the individual digits of the number and the sum of the digits. For example, the program should: ouput the individual digits of 3456 as 3 4 5 6 and the sum as 18, output the individual digits of 8030 as 8 0 3 0 and the sum as 11, output the individual digits of 2345526 as 2 3 4 5 5 2 6 and the sum as 27, output the individual digits of 4000 as 4 0 0 0 and the sum as 4, and output the individual digits of -2345 as 2 3 4 5 and the sum as 14.

Submit your compiled Java code for this assignment, compress the .java file into a single .zip file.

Explanation / Answer

Java program that prompts the user to input an integer and then outputs both the individual digits of the number and the sum of the digits.

import java.util.*;

public class inputoutput

{

static Scanner console = new Scanner(System.in);

public static void main(String[] args)

{

int limit;

int number;

int sum = 0;

int counter = 0;

System.out.print("Enter the number of " + "intergers in the list: ");

limit = console.nextInt();

System.out.printf("Enter your %d" + " numbers :", limit);

while (counter < limit)

{

number = console.nextInt();

sum = sum + number;

counter++;

}

System.out.println("Entered numbers :" );

System.out.printf("The sum of %d " + "numbers = %d", limit, sum);

}

}

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote