The program receives multiple numbers from the command line and outputs the results after summing.

Source: Internet
Author: User

Design idea: Using the digital input function in the scanner class, the sum of the numbers is realized by the while loop, and the input of non-digital ending numbers is obtained by using the characteristics of while.

Program Flowchart:

SOURCE program code:

Package task;
Import java.util.*;
public class Num1 {
public static void Main (string[] args)
{

System.out.println ("Please enter the number of additions required");
System.out.print ("(last enter a non-digit to end the input):");
Scanner reader=new Scanner (system.in);
Double sum = 0;
int s=0;
while (Reader.hasnextdouble ())
{
Double q = reader.nextdouble ();
s = s + 1;
sum = sum + q;

}
System.out.print ("The number of these numbers and for:" +sum);

}
}

Results:

}

The program receives multiple numbers from the command line and outputs the results after summing.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.