Ask Question
7 April, 10:31

Write a (java) program with a class called Sum1, using a while loop to add 10 numbers entered from the key-board.

Hint

the program has three variables

1 - number

2 - sum

3 - count

+3
Answers (1)
  1. 7 April, 13:02
    0
    This is a java program with a class called Sum1.

    Explanation:

    While loop is used to add 10 number.

    import java. util. Scanner;

    public class Sum 1

    {

    public static void main (String args[])

    {

    int number, count, sum = 0;

    Scanner s = new Scanner (System. in);

    System. out. print ("Enter the number:");

    number = s. nextInt ();

    while (number > 0)

    {

    count = number % 10;

    sum = sum + n;

    number = number / 10;

    }

    System. out. println ("Sum of Digits:"+sum);

    }

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a (java) program with a class called Sum1, using a while loop to add 10 numbers entered from the key-board. Hint the program has ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers